forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (32 loc) · 942 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
29
30
31
32
33
34
35
[package]
name = "sui-snapshot"
version = "0.1.0"
edition = "2021"
publish = false
license = "Apache-2.0"
authors = ["Mysten Labs <build@mystenlabs.com>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
integer-encoding.workspace = true
indicatif.workspace = true
anyhow.workspace = true
serde.workspace = true
bcs.workspace = true
byteorder.workspace = true
tracing.workspace = true
bytes.workspace = true
tokio-stream.workspace = true
num_enum.workspace = true
futures.workspace = true
object_store.workspace = true
prometheus.workspace = true
sui-types.workspace = true
sui-config.workspace = true
sui-core.workspace = true
sui-storage.workspace = true
sui-protocol-config.workspace = true
fastcrypto = { workspace = true, features = ["copy_key"] }
tokio = { workspace = true, features = ["full"] }
serde_json.workspace = true
[dev-dependencies]
tempfile.workspace = true