Files
herodb/Cargo.toml
Maxime Van Hees 9136e5f3c0 benchmarking
2025-10-30 11:17:26 +01:00

65 lines
1.4 KiB
TOML

[package]
name = "herodb"
version = "0.0.1"
authors = ["ThreeFold Tech NV"]
edition = "2024"
[dependencies]
anyhow = "1.0.59"
bytes = "1.3.0"
thiserror = "1.0.32"
tokio = { version = "1.23.0", features = ["full"] }
clap = { version = "4.5.20", features = ["derive"] }
byteorder = "1.4.3"
futures = "0.3"
sled = "0.34"
redb = "2.1.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.3"
chacha20poly1305 = "0.10.1"
rand = "0.8"
sha2 = "0.10"
age = "0.10"
secrecy = "0.8"
ed25519-dalek = "2"
x25519-dalek = "2"
base64 = "0.22"
jsonrpsee = { version = "0.25.1", features = ["http-client", "ws-client", "server", "macros"] }
tantivy = "0.25.0"
arrow-schema = "55.2.0"
arrow-array = "55.2.0"
lance = "0.37.0"
lance-index = "0.37.0"
arrow = "55.2.0"
lancedb = "0.22.1"
uuid = "1.18.1"
ureq = { version = "2.10.0", features = ["json", "tls"] }
reth-ipc = { git = "https://github.com/paradigmxyz/reth", package = "reth-ipc", rev = "d8451e54e7267f9f1634118d6d279b2216f7e2bb" }
criterion = { version = "0.7.0", features = ["async", "async_tokio", "csv_output"] }
[dev-dependencies]
redis = { version = "0.24", features = ["aio", "tokio-comp"] }
tempfile = "3.8"
csv = "1.3"
[[bench]]
name = "single_ops"
harness = false
[[bench]]
name = "bulk_ops"
harness = false
[[bench]]
name = "scan_ops"
harness = false
[[bench]]
name = "concurrent_ops"
harness = false
[[bench]]
name = "memory_profile"
harness = false