-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
39 lines (35 loc) · 989 Bytes
/
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
[package]
name = "secret-dice"
version = "0.0.1"
authors = ["Assaf Morami <[email protected]>"]
edition = "2018"
description = "A simple dice roll game implemented as a Secret Contract for the Secret Network"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true
[features]
default = []
backtraces = ["cosmwasm-std/backtraces"]
[dependencies]
cosmwasm-std = { git = "https://github.com/enigmampc/SecretNetwork", tag = "v1.0.0" }
cosmwasm-storage = { git = "https://github.com/enigmampc/SecretNetwork", tag = "v1.0.0" }
schemars = "0.7"
serde-json-wasm = "0.2.1"
serde = { version = "1.0.114", default-features = false, features = [
"derive",
"alloc"
] }
sha2 = "0.9.1"
rand_chacha = "0.2.2"
rand = "0.7.3"