Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'lib/smol_str/Cargo.toml')
| -rw-r--r-- | lib/smol_str/Cargo.toml | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/lib/smol_str/Cargo.toml b/lib/smol_str/Cargo.toml index eeb3b1b092..fee00ec2ba 100644 --- a/lib/smol_str/Cargo.toml +++ b/lib/smol_str/Cargo.toml @@ -1,21 +1,16 @@ [package] name = "smol_str" -version = "0.1.16" -authors = ["Aleksey Kladov <[email protected]>"] -repository = "https://github.com/matklad/smol_str" +version = "0.1.17" description = "small-string optimized string type with O(1) clone" license = "MIT OR Apache-2.0" +repository = "https://github.com/matklad/smol_str" +authors = ["Aleksey Kladov <[email protected]>"] edition = "2018" [dependencies] serde = { version = "1", optional = true, default_features = false, features = [ "std" ] } [dev-dependencies] -proptest = "0.8.3" +proptest = "0.10" serde_json = "1" serde = { version = "1", features = [ "derive" ] } -criterion = "0.2" - -[[bench]] -name = "building" -harness = false |