diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -1,12 +1,17 @@ [package] name = "irsc" -version = "0.0.3" -authors = ["Till Hoeppner <hoeppner.till@gmail.com>"] +version = "0.1.0" +authors = ["Till Hoeppner <till@hoeppner.ws>"] description = "A lightweight library for building IRC bots." -repository = "https://github.com/hoeppnertill/irsc" +repository = "https://github.com/tilpner/irsc" keywords = ["irc", "internet", "protocol"] -license = "WTFPL" +license = "MIT" + +[dependencies] +log = "*" +regex = "*" +regex_macros = "*" [features] ssl = ["openssl"] |