-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
40 lines (33 loc) · 1.12 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
[package]
name = "atoma-demo"
version = "0.1.0"
edition = "2021"
[features]
test = ["proptest", "test-strategy"]
[dependencies]
async-graphql = { version = "=7.0.2", default-features = false }
async-graphql-derive = { version = "=7.0.2", default-features = false }
linera-sdk = { git = "https://github.com/jvff/linera-protocol", rev = "26a5299" }
proptest = { version = "1.6.0", optional = true }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.137"
test-strategy = { version = "0.4.0", optional = true }
[dev-dependencies]
atoma-demo = { path = ".", features = ["test"] }
linera-sdk = { git = "https://github.com/jvff/linera-protocol", rev = "26a5299", features = ["test"] }
rand = "0.8.5"
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
linera-sdk = { git = "https://github.com/jvff/linera-protocol", rev = "26a5299", features = ["test", "wasmer", "unstable-oracles"] }
tokio = "1.39.3"
test-log = "*"
[[bin]]
name = "atoma_demo_contract"
path = "src/contract.rs"
[[bin]]
name = "atoma_demo_service"
path = "src/service.rs"
[profile.release]
debug = true
lto = true
opt-level = 'z'
strip = 'debuginfo'