2017-02-27 14:35:57 +00:00
|
|
|
[package]
|
|
|
|
name = "jid"
|
2023-08-17 10:41:17 +00:00
|
|
|
version = "0.10.0"
|
2017-12-27 15:42:07 +00:00
|
|
|
authors = [
|
|
|
|
"lumi <lumi@pew.im>",
|
|
|
|
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
|
|
|
|
"Maxime “pep” Buquet <pep@bouah.net>",
|
|
|
|
]
|
2017-02-27 15:42:09 +00:00
|
|
|
description = "A crate which provides a Jid struct for Jabber IDs."
|
2019-10-19 23:04:22 +00:00
|
|
|
homepage = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
|
|
|
repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
2017-02-27 15:42:09 +00:00
|
|
|
documentation = "https://docs.rs/jid"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["xmpp", "jid"]
|
2019-06-10 21:09:20 +00:00
|
|
|
license = "MPL-2.0"
|
2023-11-11 13:52:55 +00:00
|
|
|
edition = "2021"
|
2017-02-27 15:42:09 +00:00
|
|
|
|
|
|
|
[badges]
|
2019-10-19 23:04:22 +00:00
|
|
|
gitlab = { repository = "xmpp-rs/xmpp-rs" }
|
2017-02-27 14:35:57 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-06-20 10:49:20 +00:00
|
|
|
memchr = "2.5"
|
2022-07-13 18:49:40 +00:00
|
|
|
minidom = { version = "0.15", optional = true }
|
2020-04-30 21:19:06 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
2023-07-15 17:25:14 +00:00
|
|
|
stringprep = "0.1.3"
|
2023-10-29 12:51:23 +00:00
|
|
|
quote = { version = "1.0", optional = true }
|
|
|
|
proc-macro2 = { version = "1.0", optional = true }
|
2023-08-03 21:13:34 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-08-14 17:59:28 +00:00
|
|
|
serde_test = "1"
|
|
|
|
jid = { path = ".", features = [ "serde" ] }
|
2023-10-29 12:51:23 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
quote = ["dep:quote", "dep:proc-macro2"]
|