diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..15025b3 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "irc-stream"] + path = irc-stream + url = ssh://git@chaostreff-alzey.de:222/Thelie/irc-stream.git diff --git a/Cargo.lock b/Cargo.lock index 6050c83..bffb171 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -287,6 +287,14 @@ dependencies = [ "tokio-util", ] +[[package]] +name = "irc_stream" +version = "0.1.0" +dependencies = [ + "futures", + "irc-proto", +] + [[package]] name = "itoa" version = "0.4.7" @@ -342,8 +350,8 @@ checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525" name = "mention_2_mail" version = "0.1.0" dependencies = [ - "futures", "irc-proto", + "irc_stream", "lettre", "native-tls", "toml", diff --git a/Cargo.toml b/Cargo.toml index 4240d07..534b3cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,8 +7,9 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -futures = "0.3" irc-proto = "0.15" +irc_stream = { path = "irc-stream", version = "0.1" } lettre = "0.9" -toml = "0.5" native-tls = "0.2" +toml = "0.5" + diff --git a/irc-stream b/irc-stream new file mode 160000 index 0000000..fea845a --- /dev/null +++ b/irc-stream @@ -0,0 +1 @@ +Subproject commit fea845a5335691b8e75b3981f93ae59335043eb1