Add serde feature for xmpp crate
This commit is contained in:
parent
aee4c79110
commit
034976748a
6 changed files with 9 additions and 0 deletions
|
@ -30,6 +30,8 @@ minidom = { version = "0.15", path = "../minidom" }
|
||||||
component = []
|
component = []
|
||||||
# Disable validation of unknown attributes.
|
# Disable validation of unknown attributes.
|
||||||
disable-validation = []
|
disable-validation = []
|
||||||
|
# Enable serde support in jid crate
|
||||||
|
serde = [ "jid/serde" ]
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
rustdoc-args = [ "--sort-modules-by-appearance", "-Zunstable-options" ]
|
rustdoc-args = [ "--sort-modules-by-appearance", "-Zunstable-options" ]
|
||||||
|
|
|
@ -2,6 +2,7 @@ Version xxx:
|
||||||
0000-00-00 Authors
|
0000-00-00 Authors
|
||||||
* Improvements:
|
* Improvements:
|
||||||
- Re-export the jid module entirely.
|
- Re-export the jid module entirely.
|
||||||
|
- Add serde feature, passed to jid crate
|
||||||
|
|
||||||
Version 0.20.0:
|
Version 0.20.0:
|
||||||
2023-08-17 Maxime “pep” Buquet <pep@bouah.net>, Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
2023-08-17 Maxime “pep” Buquet <pep@bouah.net>, Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
||||||
|
|
|
@ -48,3 +48,5 @@ starttls-native = ["starttls", "tls-native"]
|
||||||
starttls-rust = ["starttls", "tls-rust"]
|
starttls-rust = ["starttls", "tls-rust"]
|
||||||
insecure-tcp = []
|
insecure-tcp = []
|
||||||
syntax-highlighting = ["syntect"]
|
syntax-highlighting = ["syntect"]
|
||||||
|
# Enable serde support in jid crate
|
||||||
|
serde = [ "xmpp-parsers/serde" ]
|
||||||
|
|
|
@ -6,6 +6,7 @@ Version 3.5.0:
|
||||||
previous release anyway.
|
previous release anyway.
|
||||||
- Various fixes that were guarded under the tls-rust feature. All
|
- Various fixes that were guarded under the tls-rust feature. All
|
||||||
updates from dependencies.
|
updates from dependencies.
|
||||||
|
- Add serde feature, passed to jid crate
|
||||||
|
|
||||||
Version 3.4.0:
|
Version 3.4.0:
|
||||||
2023-08-17 Maxime “pep” Buquet <pep@bouah.net>
|
2023-08-17 Maxime “pep” Buquet <pep@bouah.net>
|
||||||
|
|
|
@ -36,3 +36,5 @@ starttls-native = ["tokio-xmpp/starttls", "tokio-xmpp/tls-native", "reqwest/nati
|
||||||
starttls-rust = ["tokio-xmpp/starttls", "tokio-xmpp/tls-rust", "reqwest/rustls-tls"]
|
starttls-rust = ["tokio-xmpp/starttls", "tokio-xmpp/tls-rust", "reqwest/rustls-tls"]
|
||||||
avatars = []
|
avatars = []
|
||||||
syntax-highlighting = [ "tokio-xmpp/syntax-highlighting" ]
|
syntax-highlighting = [ "tokio-xmpp/syntax-highlighting" ]
|
||||||
|
# Enable serde support in jid crate
|
||||||
|
serde = [ "tokio-xmpp/serde" ]
|
||||||
|
|
|
@ -10,6 +10,7 @@ Version 0.5.0:
|
||||||
- ClientBuilder now has a set_resource method for manual resource management (#72)
|
- ClientBuilder now has a set_resource method for manual resource management (#72)
|
||||||
- Update dependencies
|
- Update dependencies
|
||||||
- Re-export jid structs, minidom::Element, and parsers module.
|
- Re-export jid structs, minidom::Element, and parsers module.
|
||||||
|
- Add serde feature, passed to jid crate
|
||||||
|
|
||||||
Version 0.4.0:
|
Version 0.4.0:
|
||||||
2023-05-18 [ Maxime “pep” Buquet <pep@bouah.net>, Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> ]
|
2023-05-18 [ Maxime “pep” Buquet <pep@bouah.net>, Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> ]
|
||||||
|
|
Loading…
Reference in a new issue