forked from Sovereign-Labs/sovereign-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (36 loc) · 1.19 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
40
41
42
43
44
[package]
name = "sov-rollup-interface"
description = "Defines interfaces for building rollups with the Sovereign SDK"
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }
readme = "README.md"
resolver = "2"
exclude = [
"specs/assets/*",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = { workspace = true }
borsh = { workspace = true, features = ["rc"] }
serde = { workspace = true }
bytes = { workspace = true }
hex = { workspace = true, features = ["serde"] }
jmt = { workspace = true }
sha2 = { workspace = true, optional = true }
anyhow = { workspace = true }
# Proptest should be a dev-dependency, but those can't be optional
proptest = { workspace = true, optional = true }
proptest-derive = { workspace = true, optional = true }
[dev-dependencies]
serde_json = "1"
proptest = { workspace = true }
proptest-derive = { workspace = true }
[features]
default = []
fuzzing = ["proptest", "proptest-derive", "sha2"]
mocks = ["sha2", "bytes/serde"]