Changed license-file to license in Cargo.toml
This is so that crates.io doesn't think that my license is non-standard
This commit is contained in:
parent
028700b588
commit
b5c8b4b37a
|
@ -2,7 +2,7 @@
|
||||||
name = "magnet-url"
|
name = "magnet-url"
|
||||||
version = "1.0.3"
|
version = "1.0.3"
|
||||||
authors = ["William Batista <bootlegbilly@protonmail.ch>"]
|
authors = ["William Batista <bootlegbilly@protonmail.ch>"]
|
||||||
license-file = "LICENSE.md"
|
license = "MIT"
|
||||||
description = "A simple, hackable magnet url parser in Rust"
|
description = "A simple, hackable magnet url parser in Rust"
|
||||||
homepage = "https://github.com/billyb2/magnet-url-rs"
|
homepage = "https://github.com/billyb2/magnet-url-rs"
|
||||||
repository = "https://github.com/billyb2/magnet-url-rs"
|
repository = "https://github.com/billyb2/magnet-url-rs"
|
||||||
|
@ -11,11 +11,6 @@ categories = ["parsing", "encoding", "parser-implementations"]
|
||||||
keywords = ["torrent", "magnet", "magnet_url", "parse"]
|
keywords = ["torrent", "magnet", "magnet_url", "parse"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[profile.release]
|
|
||||||
lto = "fat"
|
|
||||||
opt-level = 3
|
|
||||||
codegen-units = 1
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
lazy_static = "1"
|
lazy_static = "1"
|
||||||
regex = "1"
|
regex = "1"
|
||||||
|
|
Loading…
Reference in New Issue