diff --git a/Cargo.toml b/Cargo.toml index a1c42ff..bdd7d78 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmi" -version = "0.4.4" +version = "0.4.5" authors = ["Nikolay Volf ", "Svyatoslav Nikolsky ", "Sergey Pepyakin "] license = "MIT/Apache-2.0" readme = "README.md" @@ -11,7 +11,7 @@ keywords = ["wasm", "webassembly", "bytecode", "interpreter"] exclude = [ "/res/*", "/tests/*", "/fuzz/*", "/benches/*" ] [dependencies] -wasmi-validation = { path = "validation", default-features = false } +wasmi-validation = { version = "0.1", path = "validation", default-features = false } parity-wasm = { version = "0.31", default-features = false } hashbrown = { version = "0.1.8", optional = true } memory_units = "0.3.0" diff --git a/validation/Cargo.toml b/validation/Cargo.toml index 81f38c6..e4595c2 100644 --- a/validation/Cargo.toml +++ b/validation/Cargo.toml @@ -3,6 +3,9 @@ name = "wasmi-validation" version = "0.1.0" authors = ["Parity Technologies "] edition = "2018" +license = "MIT/Apache-2.0" +repository = "https://github.com/paritytech/wasmi" +description = "Wasm code validator" [dependencies] parity-wasm = { version = "0.31", default-features = false }