Skip to content

Commit 460d4db

Browse files
committed
fix: Add default-features = false to thiserror
1 parent 4266d9c commit 460d4db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["wot", "WebofThings"]
99

1010
[features]
1111
default = ["std"]
12-
std = ["serde/std", "serde_json/std", "serde_with/std", "time/std", "oxilangtag/std", "hashbrown/allocator-api2"]
12+
std = ["serde/std", "serde_json/std", "serde_with/std", "time/std", "oxilangtag/std", "hashbrown/allocator-api2", "thiserror/std"]
1313
alloc = ["serde/alloc", "serde_json/alloc", "serde_with/alloc", "time/alloc", "oxilangtag/alloc", "hashbrown/allocator-api2"]
1414

1515
[dependencies]
@@ -19,7 +19,7 @@ serde = { version = "1.0.137", features = ["derive"], default-features = false }
1919
serde_json = { version = "1.0.81", default-features = false }
2020
serde_repr = "0.1.9"
2121
serde_with = { version = "3.7.0", default-features = false, features = ["macros"] }
22-
thiserror = "2.0.3"
22+
thiserror = { version = "2.0.3", default-features = false }
2323
time = { version = "0.3.11", features = ["serde", "serde-well-known"] }
2424

2525
[dev-dependencies]

0 commit comments

Comments
 (0)