Skip to content

Commit

Permalink
create tenant in cli
Browse files Browse the repository at this point in the history
  • Loading branch information
imor committed Aug 26, 2024
1 parent dcc250f commit 2a92dc1
Show file tree
Hide file tree
Showing 6 changed files with 466 additions and 12 deletions.
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ pin-project-lite = { version = "0.2", default-features = false }
postgres-protocol = { git = "https://github.com/MaterializeInc/rust-postgres", rev = "02336bebb28507665184c21566e5d1dc8de1dd7d" }
prost = { version = "0.13.1", default-features = false }
rand = { version = "0.8.5", default-features = false }
reqwest = { version = "0.12", default-features = false }
rustls = { version = "0.23.12", default-features = false }
rustyline = { version = "14.0.0", default-features = false }
secrecy = { version = "0.8.0", default-features = false }
serde = { version = "1.0", default-features = false }
serde_json = { version = "1.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ kube = { workspace = true, features = [
"rustls-tls",
] }
rand = { workspace = true, features = ["std"] }
reqwest = { workspace = true, features = ["json"] }
secrecy = { workspace = true, features = ["serde", "alloc"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["std"] }
Expand All @@ -43,4 +44,3 @@ tracing-subscriber = { workspace = true, features = ["registry", "env-filter"] }

[dev-dependencies]
uuid = { version = "1.10.0", features = ["v4"] }
reqwest = { version = "0.12", features = ["json"] }
6 changes: 5 additions & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@ version = "0.1.0"
edition = "2021"

[dependencies]
rustyline = "14.0.0"
reqwest = { workspace = true, features = ["json"] }
rustyline = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["std"] }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
Loading

0 comments on commit 2a92dc1

Please sign in to comment.