mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
Create Cargo.toml workspace file. Add patch directives to override path
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
0970e7b484
commit
fa118433df
6 changed files with 17 additions and 1737 deletions
15
Cargo.toml
Normal file
15
Cargo.toml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
[workspace]
|
||||||
|
members = [ # alphabetically sorted
|
||||||
|
"jid-rs",
|
||||||
|
"minidom-rs",
|
||||||
|
"tokio-xmpp",
|
||||||
|
"xmpp-parsers",
|
||||||
|
"xmpp-rs",
|
||||||
|
]
|
||||||
|
|
||||||
|
[patch.crates-io]
|
||||||
|
jid = { path = "jid-rs" }
|
||||||
|
minidom = { path = "minidom-rs" }
|
||||||
|
tokio-xmpp = { path = "tokio-xmpp" }
|
||||||
|
xmpp-parsers = { path = "xmpp-parsers" }
|
||||||
|
xmpp = { path = "xmpp-rs" }
|
2
jid-rs/.gitignore
vendored
2
jid-rs/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
target
|
|
||||||
Cargo.lock
|
|
2
minidom-rs/.gitignore
vendored
2
minidom-rs/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
target
|
|
||||||
Cargo.lock
|
|
1731
tokio-xmpp/Cargo.lock
generated
1731
tokio-xmpp/Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -25,4 +25,4 @@ tokio-io = "0.1"
|
||||||
tokio-tls = "0.2"
|
tokio-tls = "0.2"
|
||||||
quick-xml = "0.17"
|
quick-xml = "0.17"
|
||||||
xml5ever = "0.15"
|
xml5ever = "0.15"
|
||||||
xmpp-parsers = "0.15"
|
xmpp-parsers = "0.16"
|
||||||
|
|
|
@ -15,7 +15,7 @@ edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio-xmpp = "1.0.1"
|
tokio-xmpp = "1.0.1"
|
||||||
xmpp-parsers = "0.15"
|
xmpp-parsers = "0.16"
|
||||||
futures = "0.1"
|
futures = "0.1"
|
||||||
tokio = "0.1"
|
tokio = "0.1"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
|
Loading…
Reference in a new issue