Skip to content

Commit

Permalink
Dependency pruning and rationalization
Browse files Browse the repository at this point in the history
Pruned out unused/stale dependencies. Alphabetized. Moved things into
dev-dependencies that were mistakenly in dependencies. Moved db test
code around.
  • Loading branch information
rdaum committed Feb 10, 2024
1 parent a0f473d commit d173e70
Show file tree
Hide file tree
Showing 19 changed files with 98 additions and 319 deletions.
166 changes: 0 additions & 166 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ serde_json = "1.0.113"
tower-http = { version = "0.5.1", features = ["add-extension", "auth", "compression-full", "trace"] }

## Asynchronous transaction processing & networking
async-trait = "0.1.77"
futures = "0.3.30"
futures-util = { version = "0.3.30", features = ["sink", "std"] }
tokio = { version = "1.36.0", features = ["full"] }
Expand All @@ -49,7 +48,6 @@ zmq = "0.10.0"

## Logging & tracing
tracing = "0.1.40"
tracing-chrome = "0.7.1"
tracing-subscriber = "0.3.18"
tracing-test = "0.2.4"

Expand Down Expand Up @@ -90,8 +88,8 @@ pest = "2.7.7"
pest_derive = "2.7.7"

## Error declaration/ handling
eyre = "0.6.12"
color-eyre = "0.6.2"
eyre = "0.6.12"
thiserror = "1.0.56"

## For macro-ing
Expand Down
4 changes: 2 additions & 2 deletions crates/compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ authors.workspace = true
rust-version.workspace = true

[dev-dependencies]
pretty_assertions.workspace = true
test-case.workspace = true
tracing-test.workspace = true
unindent.workspace = true
pretty_assertions.workspace = true

[dependencies]

Expand All @@ -31,6 +32,5 @@ pest_derive.workspace = true
thiserror.workspace = true

## Logging & tracing
tracing-test.workspace = true
tracing.workspace = true

Loading

0 comments on commit d173e70

Please sign in to comment.