forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 817 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "narwhal-storage"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
authors = ["Mysten Labs <[email protected]>"]
publish = false
[dependencies]
tempfile.workspace = true
fastcrypto.workspace = true
fastcrypto-tbls.workspace = true
mysten-common.workspace = true
futures.workspace = true
tokio = { workspace = true, features = ["sync", "rt", "macros"] }
tracing.workspace = true
types = { path = "../types", package = "narwhal-types" }
store = { path = "../../crates/typed-store", package = "typed-store" }
sui-macros.workspace = true
config = { path = "../config", package = "narwhal-config" }
prometheus.workspace = true
lru.workspace = true
parking_lot.workspace = true
tap.workspace = true
[dev-dependencies]
test-utils = { path = "../test-utils", package = "narwhal-test-utils" }