[package] name = "wot-td" version = "0.6.2" edition = "2021" description = "Web of Things (WoT) Thing Description manipulation" license = "MIT" repository = "https://github.com/wot-rust/wot-td" keywords = ["wot", "WebofThings"] [features] default = ["std"] std = ["serde/std", "serde_json/std", "serde_with/std", "time/std", "oxilangtag/std", "hashbrown/allocator-api2", "thiserror/std"] alloc = ["serde/alloc", "serde_json/alloc", "serde_with/alloc", "time/alloc", "oxilangtag/alloc", "hashbrown/allocator-api2"] [dependencies] hashbrown = { version = "0.15.1", default-features = false, features = ["serde", "default-hasher", "inline-more", "equivalent"] } oxilangtag = { version = "0.1.5", features = ["serialize"], default-features = false } serde = { version = "1.0.137", features = ["derive"], default-features = false } serde_json = { version = "1.0.81", default-features = false } serde_repr = "0.1.9" serde_with = { version = "3.7.0", default-features = false, features = ["macros"] } thiserror = { version = "2.0.3", default-features = false } time = { version = "0.3.11", features = ["serde", "parsing"], default-features = false } [dev-dependencies] pretty_assertions = "1.4.0" time = { version = "0.3.9", features = ["macros"] }