Cargo.toml (813B)
1 [package] 2 name = "tangle_bench" 3 version.workspace = true 4 edition.workspace = true 5 authors.workspace = true 6 rust-version.workspace = true 7 license.workspace = true 8 description = "Deterministic benchmark and proof-gate harnesses for tangle" 9 10 [[bin]] 11 name = "tangle-benchmark-report" 12 path = "src/bin/tangle_benchmark_report.rs" 13 14 [dependencies] 15 pocket-types = { git = "https://github.com/triesap/pocket", rev = "329334f20948c796c6016b673b92551ac4855ad7" } 16 serde_json = "1" 17 sha2 = "0.10" 18 tangle_groups = { path = "../tangle_groups" } 19 tangle_protocol = { path = "../tangle_protocol" } 20 tangle_runtime = { path = "../tangle_runtime" } 21 tangle_store_pocket = { path = "../tangle_store_pocket" } 22 tangle_test_support = { path = "../tangle_test_support" } 23 tokio = { version = "1", features = ["rt"] } 24 25 [lints] 26 workspace = true