Skip to content

Commit

Permalink
Add version directives
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Jan 4, 2022
1 parent a1d3b97 commit 406ceac
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,30 +20,30 @@ env_logger = "0.8"
log = "0.4"
clap = { version = "3.0", features = ['derive'] }
tempfile = "3.2.0"
wat = { path = "crates/wat", optional = true }
wat = { path = "crates/wat", optional = true, version = '1.0' }

# Dependencies of `validate`
wasmparser = { path = "crates/wasmparser", optional = true }
wasmparser = { path = "crates/wasmparser", optional = true, version = '0.81' }
rayon = { version = "1.0", optional = true }

# Dependencies of `print`
wasmprinter = { path = "crates/wasmprinter", optional = true }
wasmprinter = { path = "crates/wasmprinter", optional = true, version = '0.2' }

# Dependencies of `smith`
arbitrary = { version = "1.0.0", optional = true }
serde = { version = "1", features = ['derive'], optional = true }
serde_json = { version = "1", optional = true }
wasm-smith = { path = "crates/wasm-smith", features = ["_internal_cli"], optional = true }
wasm-smith = { path = "crates/wasm-smith", features = ["_internal_cli"], optional = true, version = '0.4' }

# Dependencies of `shrink`
wasm-shrink = { path = "crates/wasm-shrink", features = ["clap"], optional = true}
wasm-shrink = { path = "crates/wasm-shrink", features = ["clap"], optional = true, version = '0.1' }
is_executable = { version = "1.0.1", optional = true }

# Dependencies of `mutate`
wasm-mutate = { path = "crates/wasm-mutate", features = ["clap"], optional = true }
wasm-mutate = { path = "crates/wasm-mutate", features = ["clap"], optional = true, version = '0.1' }

# Dependencies of `dump`
wasmparser-dump = { path = "crates/dump", optional = true }
wasmparser-dump = { path = "crates/dump", optional = true, version = '0.1' }

[dev-dependencies]
anyhow = "1.0"
Expand Down

0 comments on commit 406ceac

Please sign in to comment.