Compare commits
1 commit
main
...
version-st
Author | SHA1 | Date | |
---|---|---|---|
5143938bef |
4 changed files with 9 additions and 9 deletions
|
@ -24,7 +24,7 @@ chrono = { version = "0.4.5", default-features = false, features = ["std"] }
|
||||||
# same repository dependencies
|
# same repository dependencies
|
||||||
jid = { version = "0.11", features = ["minidom"] }
|
jid = { version = "0.11", features = ["minidom"] }
|
||||||
minidom = { version = "0.16" }
|
minidom = { version = "0.16" }
|
||||||
xso = { version = "^0.1", features = ["macros", "minidom", "panicking-into-impl", "jid", "base64"] }
|
xso = { version = "0.1", features = ["macros", "minidom", "panicking-into-impl", "jid", "base64"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
# Build xmpp-parsers to make components instead of clients.
|
# Build xmpp-parsers to make components instead of clients.
|
||||||
|
|
|
@ -20,7 +20,7 @@ tokio-stream = { version = "0.1", features = [] }
|
||||||
tokio-util = { version = "0.7", features = ["codec"] }
|
tokio-util = { version = "0.7", features = ["codec"] }
|
||||||
webpki-roots = { version = "0.25", optional = true }
|
webpki-roots = { version = "0.25", optional = true }
|
||||||
rxml = { version = "0.11.1", features = ["compact_str"] }
|
rxml = { version = "0.11.1", features = ["compact_str"] }
|
||||||
rand = "^0.8"
|
rand = "0.8"
|
||||||
syntect = { version = "5", optional = true }
|
syntect = { version = "5", optional = true }
|
||||||
# same repository dependencies
|
# same repository dependencies
|
||||||
sasl = { version = "0.5" }
|
sasl = { version = "0.5" }
|
||||||
|
|
|
@ -15,9 +15,9 @@ edition = "2021"
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
quote = "^1"
|
quote = "1"
|
||||||
syn = { version = "^2", features = ["full", "extra-traits"] }
|
syn = { version = "2", features = ["full", "extra-traits"] }
|
||||||
proc-macro2 = "^1"
|
proc-macro2 = "1"
|
||||||
rxml_validation = { version = "0.11", default-features = false, features = ["std"] }
|
rxml_validation = { version = "0.11", default-features = false, features = ["std"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
@ -11,7 +11,7 @@ license = "MPL-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rxml = { version = "0.11.1", default-features = false }
|
rxml = { version = "0.11.1", default-features = false }
|
||||||
minidom = { version = "^0.16" }
|
minidom = { version = "0.16" }
|
||||||
xso_proc = { version = "0.1", optional = true }
|
xso_proc = { version = "0.1", optional = true }
|
||||||
|
|
||||||
# optional dependencies to provide text conversion to/from types from/using
|
# optional dependencies to provide text conversion to/from types from/using
|
||||||
|
@ -20,9 +20,9 @@ xso_proc = { version = "0.1", optional = true }
|
||||||
# defaults to picking the highest matching version by default, the only
|
# defaults to picking the highest matching version by default, the only
|
||||||
# sensible thing we can do here is to depend on the least version of the most
|
# sensible thing we can do here is to depend on the least version of the most
|
||||||
# recent semver of each crate.
|
# recent semver of each crate.
|
||||||
jid = { version = "^0.11", optional = true }
|
jid = { version = "0.11", optional = true }
|
||||||
uuid = { version = "^1", optional = true }
|
uuid = { version = "1", optional = true }
|
||||||
base64 = { version = "^0.22", optional = true }
|
base64 = { version = "0.22", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
macros = [ "dep:xso_proc" ]
|
macros = [ "dep:xso_proc" ]
|
||||||
|
|
Loading…
Reference in a new issue