Cargo.toml

 1[package]
 2name = "jid"
 3version = "0.9.4"
 4authors = [
 5  "lumi <lumi@pew.im>",
 6  "Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
 7  "Maxime “pep” Buquet <pep@bouah.net>",
 8]
 9description = "A crate which provides a Jid struct for Jabber IDs."
10homepage = "https://gitlab.com/xmpp-rs/xmpp-rs"
11repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
12documentation = "https://docs.rs/jid"
13readme = "README.md"
14keywords = ["xmpp", "jid"]
15license = "MPL-2.0"
16edition = "2018"
17
18[badges]
19gitlab = { repository = "xmpp-rs/xmpp-rs" }
20
21[dependencies]
22icu = { version = "0.1", optional = true }
23minidom = { version = "0.15", optional = true }
24serde = { version = "1.0", features = ["derive"], optional = true }
25
26[features]
27stringprep = ["icu"]