add license and repository settings to Cargo.toml

This commit is contained in:
vms 2019-04-07 11:26:46 +03:00
parent 50aa00c8df
commit e78119c5de
2 changed files with 5 additions and 2 deletions

2
Cargo.lock generated
View File

@ -207,7 +207,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "wasm-module-name" name = "wasm-module-name"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
"exitfailure 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "exitfailure 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,10 +1,13 @@
[package] [package]
name = "wasm-module-name" name = "wasm-module-name"
version = "0.1.0" version = "0.1.1"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2018" edition = "2018"
publish = true publish = true
description = "Console utility to show and change Wasm module names" description = "Console utility to show and change Wasm module names"
repository = "https://github.com/fluencelabs/wasm-module-name"
license = "Apache-2.0"
keywords = ["fluence", "webassembly", "wasm-module-name"]
[profile.release] [profile.release]
debug = false debug = false