@@ -24,18 +24,13 @@ staking = ["cosmwasm-std/staking"]
24
24
stargate = [" cosmwasm-std/stargate" ]
25
25
# Use cranelift backend instead of singlepass. This is required for development on Windows.
26
26
cranelift = [" wasmer/cranelift" ]
27
- # It's a bit unclear if interface_version_7 (CosmWasm 0.16) contracts are fully compatible
28
- # with newer hosts. If old contracts are important to you and you are willing to take the risk,
29
- # activate this feature.
30
- # See also https://gist.github.com/webmaster128/3cd1988680843ecaf7548050821e1e6f.
31
- allow_interface_version_7 = []
32
27
33
28
[lib ]
34
29
# See https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options
35
30
bench = false
36
31
37
32
[dependencies ]
38
- bytes = " 1.4.0" # need a higher version than the one required by Wasmer for the Bytes -> Vec<u8> implementation
33
+ bytes = " 1.4.0" # need a higher version than the one required by Wasmer for the Bytes -> Vec<u8> implementation
39
34
clru = " 0.6.1"
40
35
crc32fast = " 1.3.2"
41
36
# Uses the path when built locally; uses the given version from crates.io when published
@@ -54,8 +49,8 @@ wasmer-middlewares = "=4.2.2"
54
49
# Dependencies that we do not use ourself. We add those entries
55
50
# to bump the min version of them.
56
51
bytecheck = " 0.6.3" # With this version the simdutf8 dependency became optional
57
- enumset = " 1.0.2" # Fixes https://github.com/Lymia/enumset/issues/17 (https://github.com/Lymia/enumset/commit/a430550cd6a3c9b1ef636d37f75dede7616f5b62)
58
- bitflags = " 1.1.0" # https://github.com/CensoredUsername/dynasm-rs/pull/74
52
+ enumset = " 1.0.2" # Fixes https://github.com/Lymia/enumset/issues/17 (https://github.com/Lymia/enumset/commit/a430550cd6a3c9b1ef636d37f75dede7616f5b62)
53
+ bitflags = " 1.1.0" # https://github.com/CensoredUsername/dynasm-rs/pull/74
59
54
60
55
# Wasmer git/local (used for quick local debugging or patching)
61
56
# wasmer = { git = "https://github.com/wasmerio/wasmer", rev = "877ce1f7c44fad853c", default-features = false, features = ["cranelift", "singlepass"] }
@@ -64,7 +59,7 @@ bitflags = "1.1.0" # https://github.com/CensoredUsername/dynasm-rs/pull/74
64
59
# wasmer-middlewares = { path = "../../../wasmer/lib/middlewares" }
65
60
66
61
[dev-dependencies ]
67
- criterion = { version = " 0.4" , features = [ " html_reports" ] }
62
+ criterion = { version = " 0.4" , features = [" html_reports" ] }
68
63
glob = " 0.3.1"
69
64
hex-literal = " 0.3.1"
70
65
tempfile = " 3.1.0"
0 commit comments