2017-02-27 15:35:57 +01:00
|
|
|
[package]
|
|
|
|
|
name = "jid"
|
2022-07-13 20:49:40 +02:00
|
|
|
version = "0.9.4"
|
2017-12-27 16:42:07 +01:00
|
|
|
authors = [
|
|
|
|
|
"lumi <lumi@pew.im>",
|
|
|
|
|
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
|
|
|
|
|
"Maxime “pep” Buquet <pep@bouah.net>",
|
|
|
|
|
]
|
2017-02-27 16:42:09 +01:00
|
|
|
description = "A crate which provides a Jid struct for Jabber IDs."
|
2019-10-20 01:04:22 +02:00
|
|
|
homepage = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
|
|
|
|
repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
2017-02-27 16:42:09 +01:00
|
|
|
documentation = "https://docs.rs/jid"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
keywords = ["xmpp", "jid"]
|
2019-06-10 23:09:20 +02:00
|
|
|
license = "MPL-2.0"
|
2018-12-18 16:38:14 +01:00
|
|
|
edition = "2018"
|
2017-02-27 16:42:09 +01:00
|
|
|
|
|
|
|
|
[badges]
|
2019-10-20 01:04:22 +02:00
|
|
|
gitlab = { repository = "xmpp-rs/xmpp-rs" }
|
2017-02-27 15:35:57 +01:00
|
|
|
|
|
|
|
|
[dependencies]
|
2019-12-02 02:57:20 +01:00
|
|
|
icu = { version = "0.1", optional = true }
|
2022-07-13 20:49:40 +02:00
|
|
|
minidom = { version = "0.15", optional = true }
|
2020-04-30 23:19:06 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
2023-01-15 21:44:04 +01:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
stringprep = ["icu"]
|