Skip to content

Commit

Permalink
Merge pull request #19 from superfly/cli-error-tweaks
Browse files Browse the repository at this point in the history
CLI tweaks (less panicky, more convenient)
  • Loading branch information
jeromegn authored Aug 10, 2023
2 parents d69104a + f121f37 commit 6eead17
Show file tree
Hide file tree
Showing 19 changed files with 321 additions and 744 deletions.
371 changes: 108 additions & 263 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
members = [
"crates/*",
"integration-tests"
]

[workspace.dependencies]
Expand Down Expand Up @@ -32,7 +33,6 @@ lru = "0.8.1"
metrics = "0.21.0"
once_cell = "1.17.1"
parking_lot = { version = "0.12.1" }
pgwire = "0.13.0"
pin-project-lite = "0.2.9"
quoted-string = "0.6.1"
rand = { version = "0.8.5", features = ["small_rng"] }
Expand All @@ -58,7 +58,7 @@ tokio-util = { version = "0.7.7", features = ["io", "codec", "net"] }
tower = { version = "0.4.13", features = ["limit", "load-shed", "buffer"] }
tower-http = { version = "0.4.0", features = ["trace"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["json"] }
tracing-subscriber = { version = "0.3.16", features = ["json", "env-filter"] }
trust-dns-resolver = "0.22.0"
uhlc = { version = "0.5.2", features = ["defmt"] }
ulid = { version = "1", features = ["serde", "uuid"] }
Expand All @@ -72,10 +72,8 @@ seahash = "4.1.0"
enquote = "1.1.0"
hex = "0.4.3"
nom = "7.1.3"
async-stream = { version = "0.3.5" }
smallvec = { version = "1.11.0", features = ["serde", "write", "union"] }
http-body = "0.4.5"
eventsource-stream = "0.2.3"
rhai = { version = "1.15.1", features = ["sync"] }

[profile.release]
Expand Down
4 changes: 1 addition & 3 deletions crates/corro-agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ hyper = { workspace = true }
metrics = { workspace = true }
once_cell = { workspace = true }
parking_lot = { workspace = true }
pgwire = { workspace = true }
quoted-string = { workspace = true }
rand = { workspace = true }
rangemap = { workspace = true }
Expand Down Expand Up @@ -52,5 +51,4 @@ uuid = { workspace = true }

[dev-dependencies]
corro-tests = { path = "../corro-tests" }
http-body = { workspace = true }
eventsource-stream = { workspace = true }
http-body = { workspace = true }
1 change: 0 additions & 1 deletion crates/corro-agent/src/api/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
pub mod http;
pub mod peer;
pub mod pg;
pub mod pubsub;
Loading

0 comments on commit 6eead17

Please sign in to comment.