-
Notifications
You must be signed in to change notification settings - Fork 289
/
Cargo.toml
39 lines (37 loc) · 1.32 KB
/
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
36
37
38
39
[dependencies]
anyhow = { workspace = true }
bcs-ext = { workspace = true }
byteorder = { features = ["std"], workspace = true }
bytes = { workspace = true }
forkable-jellyfish-merkle = { workspace = true }
hex = { features = ["serde"], workspace = true }
num_enum = { workspace = true }
proptest = { features = ["std"], optional = true, workspace = true }
proptest-derive = { optional = true, workspace = true }
rand = { workspace = true }
rand_core = { default-features = false, workspace = true }
schemars = { workspace = true }
serde = { features = ["derive"], workspace = true }
serde_json = { workspace = true }
starcoin-accumulator = { workspace = true }
starcoin-crypto = { workspace = true }
starcoin-uint = { workspace = true }
starcoin-vm-types = { workspace = true }
thiserror = { workspace = true }
lazy_static = { workspace = true }
bincode = { version = "1", default-features = false }
serde_bytes = { workspace = true }
starcoin-logger = { workspace = true }
[features]
default = []
fuzzing = ["proptest", "proptest-derive", "starcoin-vm-types/fuzzing"]
[package]
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
name = "starcoin-types"
publish = { workspace = true }
version = "2.0.2"
homepage = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }