aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorJokler <jokler.contact@gmail.com>2017-10-16 00:33:58 +0200
committerJokler <jokler.contact@gmail.com>2017-10-16 00:33:58 +0200
commita815a897c60a3c9d098b40a39e3d0549d5230b88 (patch)
tree1de4e9e1715bf231928c49ab9ceca14a95cd3a20 /Cargo.toml
parent4130d9b299265df7c06a9dcfa426746a870be615 (diff)
downloadfrippy-a815a897c60a3c9d098b40a39e3d0549d5230b88.tar.gz
frippy-a815a897c60a3c9d098b40a39e3d0549d5230b88.zip
Rewrite run() and add logging
The logger is created in main.rs for now and just logs messages over println. Changes on run() - Added Log Messages - Allow multiple configs which create one IrcServer each - Use tokio-core to keep IrcServers in the main thread
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index f07b67c..fc88edc 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -20,11 +20,16 @@ doc = false
[dependencies]
irc = "0.12.5"
+tokio-core = "0.1.10"
+futures = "0.1.16"
+log = "0.3.8"
+time = "0.1"
reqwest = "0.8.0"
regex = "0.2.2"
lazy_static = "0.2.9"
serde = "1.0.15"
serde_json = "1.0.3"
+glob = "0.2"
plugin_derive = { path = "plugin_derive" }
unicode_names = { git = 'https://github.com/Jokler/unicode_names', branch = 'update-to-latest-unicode' }