-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (31 loc) · 1.62 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
[workspace]
members = ["contracts/*"]
resolver = "2"
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true
[workspace.dependencies]
cosmwasm-std = { package = "secret-cosmwasm-std", version = "1.1.11", default-features = false }
cosmwasm-storage = { package = "secret-cosmwasm-storage", version = "1.1.11", default-features = false }
schemars = "0.8.15"
snip721-reference-impl = { git = "https://github.com/eqoty-labs/snip721-reference-impl", branch = "post-init-data-as-library" }
secret-toolkit = { version = "0.10.0", default-features = false, features = [] }
cw-migratable-contract-std = { version = "12.0.0" }
serde = { version = "1.0.190", default-features = false, features = ["derive"] }
cosmwasm-schema = { version = "1.4.1" }
[patch.crates-io]
serde-json-wasm = { git = "https://github.com/luca992/serde-json-wasm", branch = "deserialize-bytes" }
# the "update-serde-json-wasm" branch on our fork just has the latest serde-json-wasm version
# then by applying the serde-json-wasm patch above, based on the latest serde-json-wasm version
# it will then use our "deserialize-bytes" branch everywhere including patching the patched version of cosmwasm-std
# and cosmwasm-storage below.
# See: https://github.com/CosmWasm/serde-json-wasm/pull/63#issue-1933783760
cosmwasm-std = { package = "secret-cosmwasm-std", git = "https://github.com/luca992/cosmwasm", branch = "update-serde-json-wasm" }
cosmwasm-storage = { package = "secret-cosmwasm-storage", git = "https://github.com/luca992/cosmwasm", branch = "update-serde-json-wasm" }