Skip to content

Commit

Permalink
build: clean up dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Hilgers <[email protected]>
  • Loading branch information
fhilgers committed Dec 18, 2024
1 parent d1c0bf2 commit 7275421
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
1 change: 0 additions & 1 deletion rust/Cargo.lock

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

7 changes: 7 additions & 0 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,13 @@ object = "0.36.5"
bytemuck = { version = "1.20.0" }
crossbeam = "0.8.4"
ractor = { version = "0.13.4", default-features = false }
async-walkdir = "2.0.0"
tokio-process-stream = "0.4.0"
symbolic-demangle = { version = "12.12.3", default-features = false, features = ["cpp", "rust"] }
symbolic-common = "12.12.3"
tantivy = { version = "0.22.0", features = ["mmap", "zstd-compression"], default-features = false }
fmmap = { version = "0.3.3", default-features = false, features = ["tokio-async"] }
flume = { version = "0.11.1", default-features = false, features = ["async"] }

[profile.release.package.backend-ebpf]
debug = 2
Expand Down
15 changes: 7 additions & 8 deletions rust/backend/daemon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,13 @@ serde = { workspace = true }
crossbeam = { workspace = true }
bytemuck = { workspace = true }
ractor = { workspace = true, features = ["tokio_runtime"] }
async-walkdir = "2.0.0"
tokio-process-stream = "0.4.0"
symbolic-demangle = { version = "12.12.3", default-features = false, features = ["cpp", "rust"] }
symbolic-common = "12.12.3"
futures = "0.3.31"
tantivy = { version = "0.22.0", features = ["mmap", "zstd-compression"], default-features = false }
fmmap = { version = "0.3.3", default-features = false, features = ["tokio-async"] }
flume = { version = "0.11.1", default-features = false, features = ["async"] }
async-walkdir = { workspace = true }
tokio-process-stream = { workspace = true }
symbolic-demangle = { workspace = true }
symbolic-common = { workspace = true }
tantivy = { workspace = true }
fmmap = { workspace = true }
flume = { workspace = true }

[build-dependencies]
cargo_metadata = { workspace = true }
Expand Down

0 comments on commit 7275421

Please sign in to comment.