Added irc-stream dependency.
This commit is contained in:
parent
2695f65afa
commit
eece7a1155
4 changed files with 16 additions and 3 deletions
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "irc-stream"]
|
||||||
|
path = irc-stream
|
||||||
|
url = ssh://git@chaostreff-alzey.de:222/Thelie/irc-stream.git
|
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -287,6 +287,14 @@ dependencies = [
|
||||||
"tokio-util",
|
"tokio-util",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "irc_stream"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"futures",
|
||||||
|
"irc-proto",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "itoa"
|
name = "itoa"
|
||||||
version = "0.4.7"
|
version = "0.4.7"
|
||||||
|
@ -342,8 +350,8 @@ checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
|
||||||
name = "mention_2_mail"
|
name = "mention_2_mail"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"futures",
|
|
||||||
"irc-proto",
|
"irc-proto",
|
||||||
|
"irc_stream",
|
||||||
"lettre",
|
"lettre",
|
||||||
"native-tls",
|
"native-tls",
|
||||||
"toml",
|
"toml",
|
||||||
|
|
|
@ -7,8 +7,9 @@ edition = "2018"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3"
|
|
||||||
irc-proto = "0.15"
|
irc-proto = "0.15"
|
||||||
|
irc_stream = { path = "irc-stream", version = "0.1" }
|
||||||
lettre = "0.9"
|
lettre = "0.9"
|
||||||
toml = "0.5"
|
|
||||||
native-tls = "0.2"
|
native-tls = "0.2"
|
||||||
|
toml = "0.5"
|
||||||
|
|
||||||
|
|
1
irc-stream
Submodule
1
irc-stream
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit fea845a5335691b8e75b3981f93ae59335043eb1
|
Loading…
Reference in a new issue