2017-02-27 15:35:57 +01:00
|
|
|
[package]
|
|
|
|
|
name = "jid"
|
2026-06-10 17:48:26 +02:00
|
|
|
version = "0.12.3"
|
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"
|
2026-02-26 16:56:33 +01:00
|
|
|
edition = "2024"
|
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]
|
2023-06-20 12:49:20 +02:00
|
|
|
memchr = "2.5"
|
2020-04-30 23:19:06 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
2023-07-15 19:25:14 +02:00
|
|
|
stringprep = "0.1.3"
|
2023-10-29 13:51:23 +01:00
|
|
|
quote = { version = "1.0", optional = true }
|
|
|
|
|
proc-macro2 = { version = "1.0", optional = true }
|
2025-02-05 18:26:48 +01:00
|
|
|
idna = "1"
|
2023-12-18 13:06:22 +01:00
|
|
|
# same repository dependencies
|
2026-06-09 17:52:43 +02:00
|
|
|
minidom = { version = "0.19", path = "../minidom", optional = true }
|
2023-08-03 23:13:34 +02:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-08-14 19:59:28 +02:00
|
|
|
serde_test = "1"
|
|
|
|
|
jid = { path = ".", features = [ "serde" ] }
|
2023-10-29 13:51:23 +01:00
|
|
|
|
|
|
|
|
[features]
|
2024-11-13 10:50:25 +01:00
|
|
|
default = []
|
2023-10-29 13:51:23 +01:00
|
|
|
quote = ["dep:quote", "dep:proc-macro2"]
|