jid: Remove the std feature

Since Rust 1.81, std::error::Error has been moved to core::error::Error,
which we can use without depending on std.
This commit is contained in:
Emmanuel Gil Peyrot 2024-11-13 10:50:25 +01:00
commit c390af2b36
3 changed files with 3 additions and 7 deletions

View file

@ -32,6 +32,5 @@ serde_test = "1"
jid = { path = ".", features = [ "serde" ] }
[features]
default = ["std"]
std = []
default = []
quote = ["dep:quote", "dep:proc-macro2"]