-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (47 loc) · 1.26 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
45
46
47
48
49
50
51
52
53
54
55
[workspace]
resolver = "2"
members = [
"packages/btr-macros",
"packages/math",
"packages/multi-test",
"packages/toolkit",
"packages/storage/*",
]
[workspace.package]
edition = "2021"
[workspace.dependencies]
borsh = "1.3.1"
borsh-derive = "1.3.1"
bincode2 = "2.0.1"
cosmwasm-std = { package = "secret-cosmwasm-std", version = "1.1.11" }
cosmwasm-schema = "1.2.5"
schemars = "0.8.9"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = "1.0"
ethnum = { git = "https://github.com/securesecrets/ethnum-rs", branch = "v1.1.11-secret-borsh" }
primitive-types = { version = "0.12.1", default-features = false }
nanoid = "0.4.0"
itertools = "0.10.1"
prost = "0.9"
anyhow = "1.0.41"
derivative = "2"
proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = ["derive", "full", "printing", "extra-traits"] }
rand = { version = "0.8.5", default-features = false }
remain = { version = "0.2.2" }
rstest_reuse = "0.4.0"
rstest = "0.15.0"
criterion = { version = "0.3", features = [ "html_reports" ] }
paste = "1.0"
derive-from-ext = "0.2"
btr-macros = { path = "../btr_macros" }
serde_json = "1"
proptest = "1.0.0"
[profile.release]
rpath = false
lto = true
overflow-checks = true
opt-level = 3
debug = false
debug-assertions = false