Unnamed repository; edit this file 'description' to name the repository.
Revert usage of optional dependency feature syntax
Lukas Wirth 2022-04-27
parent dc5a62b · commit 25d7fa7
-rw-r--r--lib/smol_str/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/smol_str/Cargo.toml b/lib/smol_str/Cargo.toml
index ea4c8c09f6..b7bd8f7314 100644
--- a/lib/smol_str/Cargo.toml
+++ b/lib/smol_str/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "smol_str"
-version = "0.1.22"
+version = "0.1.23"
description = "small-string optimized string type with O(1) clone"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-analyzer/smol_str"
@@ -18,4 +18,4 @@ serde = { version = "1.0.136", features = ["derive"] }
[features]
default = ["std"]
-std = ["serde?/std"]
+std = ["serde/std"]