Relative dependencies
This commit is contained in:
parent
54e1a98cde
commit
df106dfbaf
5 changed files with 11 additions and 11 deletions
|
|
@ -25,7 +25,7 @@ stringprep = "0.1.3"
|
||||||
quote = { version = "1.0", optional = true }
|
quote = { version = "1.0", optional = true }
|
||||||
proc-macro2 = { version = "1.0", optional = true }
|
proc-macro2 = { version = "1.0", optional = true }
|
||||||
# same repository dependencies
|
# same repository dependencies
|
||||||
minidom = { version = "0.16", optional = true }
|
minidom = { version = "0.16", path = "../minidom", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde_test = "1"
|
serde_test = "1"
|
||||||
|
|
|
||||||
|
|
@ -22,9 +22,9 @@ sha3 = "0.10"
|
||||||
blake2 = "0.10.4"
|
blake2 = "0.10.4"
|
||||||
chrono = { version = "0.4.5", default-features = false, features = ["std"] }
|
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", path = "../jid", features = ["minidom"] }
|
||||||
minidom = { version = "0.16" }
|
minidom = { version = "0.16", path = "../minidom" }
|
||||||
xso = { version = "0.1", features = ["macros", "minidom", "panicking-into-impl", "jid", "uuid", "base64"] }
|
xso = { version = "0.1", path = "../xso", features = ["macros", "minidom", "panicking-into-impl", "jid", "uuid", "base64"] }
|
||||||
uuid = { version = "1.9.1", features = ["v4"] }
|
uuid = { version = "1.9.1", features = ["v4"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
||||||
|
|
@ -23,9 +23,9 @@ 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", path = "../sasl" }
|
||||||
xmpp-parsers = { version = "0.21" }
|
xmpp-parsers = { version = "0.21", path = "../parsers" }
|
||||||
minidom = { version = "0.16" }
|
minidom = { version = "0.16", path = "../minidom" }
|
||||||
|
|
||||||
# these are only needed for starttls ServerConnector support
|
# these are only needed for starttls ServerConnector support
|
||||||
hickory-resolver = { version = "0.24", optional = true}
|
hickory-resolver = { version = "0.24", optional = true}
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ log = "0.4"
|
||||||
reqwest = { version = "0.12", features = ["stream"], default-features = false }
|
reqwest = { version = "0.12", features = ["stream"], default-features = false }
|
||||||
tokio-util = { version = "0.7", features = ["codec"] }
|
tokio-util = { version = "0.7", features = ["codec"] }
|
||||||
# same repository dependencies
|
# same repository dependencies
|
||||||
tokio-xmpp = { version = "4.0", default-features = false }
|
tokio-xmpp = { version = "4.0", path = "../tokio-xmpp", default-features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
env_logger = { version = "0.11", default-features = false, features = ["auto-color", "humantime"] }
|
env_logger = { version = "0.11", default-features = false, features = ["auto-color", "humantime"] }
|
||||||
|
|
|
||||||
|
|
@ -11,8 +11,8 @@ 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", path = "../minidom" }
|
||||||
xso_proc = { version = "0.1", optional = true }
|
xso_proc = { version = "0.1", path = "../xso-proc", optional = true }
|
||||||
|
|
||||||
# optional dependencies to provide text conversion to/from types from/using
|
# optional dependencies to provide text conversion to/from types from/using
|
||||||
# these crates
|
# these crates
|
||||||
|
|
@ -20,7 +20,7 @@ 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", path = "../jid", optional = true }
|
||||||
uuid = { version = "1", optional = true }
|
uuid = { version = "1", optional = true }
|
||||||
base64 = { version = "0.22", optional = true }
|
base64 = { version = "0.22", optional = true }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue