diff --git a/Cargo.toml b/Cargo.toml index 303cd2e71..26818b9ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,9 +17,6 @@ keywords = ["generic", "array"] categories = ["data-structures", "no-std"] include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"] -[badges] -travis-ci = { repository = "fizyk20/generic-array" } - [lib] name = "generic_array" diff --git a/src/lib.rs b/src/lib.rs index 20a9280eb..a8d7c2f5b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -84,7 +84,7 @@ //! "serde", # Serialize/Deserialize implementation //! "zeroize", # Zeroize implementation for setting array elements to zero //! "const-default", # Compile-time const default value support via trait -//! "alloc". # Enables From/TryFrom implementations between GenericArray and Vec/Box<[T]> +//! "alloc", # Enables From/TryFrom implementations between GenericArray and Vec/Box<[T]> //! "faster-hex" # Enables internal use of the `faster-hex` crate for faster hex encoding via SIMD //! ] //! ```