Skip to content

Commit

Permalink
Fix a Cargo warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sterlingjensen committed Nov 26, 2018
1 parent 1b85778 commit 450c42b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
[package]

name = "url"
# When updating version, also modify html_root_url in the lib.rs
version = "1.7.2"
authors = ["The rust-url developers"]

description = "URL library for Rust, based on the WHATWG URL Standard"
documentation = "https://docs.rs/url"
repository = "https://github.com/servo/rust-url"
readme = "README.md"
keywords = ["url", "parser"]
categories = ["parser-implementations", "web-programming", "encoding"]
license = "MIT/Apache-2.0"
autotests = false # Inhibit lookup for tests/*.rs without [[test]] sections

[badges]
travis-ci = { repository = "servo/rust-url" }
Expand Down
1 change: 1 addition & 0 deletions data-url/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ authors = ["Simon Sapin <[email protected]>"]
description = "Processing of data: URL according to WHATWG’s Fetch Standard"
repository = "https://github.com/servo/rust-url"
license = "MIT OR Apache-2.0"
autotests = false

[dependencies]
matches = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

[package]
name = "url-fuzz"
version = "0.0.1"
authors = ["Automatically generated"]
publish = false
autotests = false

[package.metadata]
cargo-fuzz = true
Expand Down
1 change: 1 addition & 0 deletions idna/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ authors = ["The rust-url developers"]
description = "IDNA (Internationalizing Domain Names in Applications) and Punycode."
repository = "https://github.com/servo/rust-url/"
license = "MIT/Apache-2.0"
autotests = false

[lib]
doctest = false
Expand Down
1 change: 1 addition & 0 deletions percent_encoding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ authors = ["The rust-url developers"]
description = "Percent encoding and decoding"
repository = "https://github.com/servo/rust-url/"
license = "MIT/Apache-2.0"
autotests = false

[lib]
doctest = false
Expand Down
3 changes: 1 addition & 2 deletions url_serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
[package]

name = "url_serde"
version = "0.2.0"
authors = ["The rust-url developers"]

description = "Serde support for URL types"
documentation = "https://docs.rs/url_serde/"
repository = "https://github.com/servo/rust-url"
readme = "README.md"
keywords = ["url", "serde"]
license = "MIT/Apache-2.0"
autotests = false

[dependencies]
serde = "1.0"
Expand Down

0 comments on commit 450c42b

Please sign in to comment.