diff options
author | Till Höppner | 2015-04-18 15:29:14 +0200 |
---|---|---|
committer | Till Höppner | 2015-04-18 15:29:14 +0200 |
commit | 057d3e0bdb4bb46749267b45223281fd9afc956d (patch) | |
tree | f6994ad12dd7d765d58958599705fb3d9d2c4d16 /Cargo.toml | |
parent | 326b5d9d96a5f45fa8b371f2a78394bcd87030e0 (diff) | |
parent | 4eea7cdff640f31f6595ec880d5405665fbd5c55 (diff) | |
download | irsc-057d3e0bdb4bb46749267b45223281fd9afc956d.tar.gz irsc-057d3e0bdb4bb46749267b45223281fd9afc956d.tar.xz irsc-057d3e0bdb4bb46749267b45223281fd9afc956d.zip |
Merge pull request #3 from tilpner/refactor
Refactor
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 21 |
1 files changed, 17 insertions, 4 deletions
@@ -1,9 +1,22 @@ [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 = "*" +eventual = "*" + +[features] +ssl = ["openssl"] + +[dependencies.openssl] +version = "*" +optional = true |