From 4446aca4055da69daa398ed3103b069e65a7f2c1 Mon Sep 17 00:00:00 2001 From: Jokler Date: Wed, 4 Oct 2017 04:35:27 +0200 Subject: Initial bot source --- Cargo.toml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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 "] +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' } -- cgit v1.2.3-70-g09d2