-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
50 lines (45 loc) · 1.1 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
[package]
name = "localsecret"
authors = ["Chris Ricketts <chris_ricketts@proton_mail.com"]
version = "0.0.1"
edition = "2021"
[lib]
doctest = false
[dependencies]
cosmwasm-std = { version = "0.10", package = "secret-cosmwasm-std" }
prost = "0.10"
# TODO: ideally remove this dependency for something more lightweight
cosmrs = { git = "https://github.com/chris-ricketts/cosmos-rust", branch = "secret", features = [
"bip32",
"secret-cosmwasm",
"dev",
] }
bip39 = "1.0"
bip32 = "0.4"
tokio = { version = "1.19", features = ["rt"] }
thiserror = "1.0.31"
serde = "1.0"
base64 = "0.13.0"
serde_json = "1.0.81"
nanorand = "0.7.0"
# TODO: use stable version once released
x25519-dalek = "2.0.0-pre.1"
hkdf = "0.12.3"
sha2 = "0.10.2"
# TODO: use crates.io once 0.7 is published
aes-siv = { git = "https://github.com/RustCrypto/AEADs" }
hex = "0.4.3"
[dev-dependencies]
test_contract = { path = "test-contract" }
[workspace]
members = ["test-contract"]
[profile.release]
opt-level = 'z'
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true