Cargo.toml: remove [badges] sections

According to the Cargo manifest, this section is not used
and the README should be used for build status.
This commit is contained in:
Diggory Hardy 2020-12-08 11:56:08 +00:00
parent 4dec0966b0
commit 8caa86b666
6 changed files with 0 additions and 24 deletions

View File

@ -16,10 +16,6 @@ autobenches = true
edition = "2018"
include = ["src/", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"]
[badges]
travis-ci = { repository = "rust-random/rand" }
appveyor = { repository = "rust-random/rand" }
[features]
# Meta-features:
default = ["std", "std_rng"]

View File

@ -14,10 +14,6 @@ keywords = ["random", "rng", "chacha"]
categories = ["algorithms", "no-std"]
edition = "2018"
[badges]
travis-ci = { repository = "rust-random/rand" }
appveyor = { repository = "rust-random/rand" }
[dependencies]
rand_core = { path = "../rand_core", version = "0.5" }
ppv-lite86 = { version = "0.2.8", default-features = false, features = ["simd"] }

View File

@ -14,10 +14,6 @@ keywords = ["random", "rng"]
categories = ["algorithms", "no-std"]
edition = "2018"
[badges]
travis-ci = { repository = "rust-random/rand" }
appveyor = { repository = "rust-random/rand" }
[features]
std = ["alloc", "getrandom", "getrandom/std"] # use std library; should be default but for above bug
alloc = [] # enables Vec and Box support without std

View File

@ -15,10 +15,6 @@ categories = ["algorithms"]
edition = "2018"
include = ["src/", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"]
[badges]
travis-ci = { repository = "rust-random/rand" }
appveyor = { repository = "rust-random/rand" }
[dependencies]
rand = { path = "..", version = "0.7", default-features = false }
num-traits = { version = "0.2", default-features = false, features = ["libm"] }

View File

@ -14,9 +14,5 @@ keywords = ["random", "rng", "hc128"]
categories = ["algorithms", "no-std"]
edition = "2018"
[badges]
travis-ci = { repository = "rust-random/rand" }
appveyor = { repository = "rust-random/rand" }
[dependencies]
rand_core = { path = "../rand_core", version = "0.5" }

View File

@ -14,10 +14,6 @@ keywords = ["random", "rng", "pcg"]
categories = ["algorithms", "no-std"]
edition = "2018"
[badges]
travis-ci = { repository = "rust-random/rand" }
appveyor = { repository = "rust-random/rand" }
[features]
serde1 = ["serde"]