Skip to content

Commit da64903

Browse files
authored
Change no_std to no-std in Cargo.toml (#991)
Otherwise I get the following error when attempting to publish the crate: ``` error: failed to publish to registry at https://crates.io Caused by: the remote server responded with an error (status 400 Bad Request): The following category slugs are not currently supported on crates.io: no_std See https://crates.io/category_slugs for a list of supported slugs. ``` Signed-off-by: Valentin Gosu <[email protected]>
1 parent 8a683ff commit da64903

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

url/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation = "https://docs.rs/url"
1010
repository = "https://github.com/servo/rust-url"
1111
readme = "../README.md"
1212
keywords = ["url", "parser"]
13-
categories = ["parser-implementations", "web-programming", "encoding", "no_std"]
13+
categories = ["parser-implementations", "web-programming", "encoding", "no-std"]
1414
license = "MIT OR Apache-2.0"
1515
include = ["src/**/*", "LICENSE-*", "README.md", "tests/**"]
1616
edition = "2018"

0 commit comments

Comments
 (0)