summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorJokler <jokler.contact@gmail.com>2017-10-04 04:35:27 +0200
committerJokler <jokler.contact@gmail.com>2017-10-04 04:35:27 +0200
commit4446aca4055da69daa398ed3103b069e65a7f2c1 (patch)
treef59c0cc4cb5f5d8c1dcfd386cf17f01542c6ff5c /Cargo.toml
parent298b43631805cbf9fb5ab78fcb5d784a97879d21 (diff)
downloadfrippy-4446aca4055da69daa398ed3103b069e65a7f2c1.tar.gz
frippy-4446aca4055da69daa398ed3103b069e65a7f2c1.zip
Initial bot source
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml28
1 files changed, 28 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..a126b60
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,28 @@
+[package]
+name = "frippy"
+version = "0.1.0"
+authors = ["Jokler <jokler.contact@gmail.com>"]
+repository = "https://github.com/Mavulp/frippy"
+readme = "README.md"
+license = "MIT"
+keywords = ["irc", "bot"]
+categories = ["network-programming"]
+description = "An IRC Bot"
+
+[lib]
+name = "frippy"
+path = "src/lib.rs"
+
+[[bin]]
+name = "frippy"
+path = "bin/main.rs"
+
+[dependencies]
+irc = "0.12.5"
+lazy_static = "0.2.9"
+reqwest = "0.8.0"
+regex = "0.2.2"
+serde = "1.0.15"
+serde_json = "1.0.3"
+
+unicode_names = { git = 'https://github.com/antifuchs/unicode_names', branch = 'fix-for-rust-1-10' }