aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorTill Höppner2015-04-18 15:29:14 +0200
committerTill Höppner2015-04-18 15:29:14 +0200
commit057d3e0bdb4bb46749267b45223281fd9afc956d (patch)
treef6994ad12dd7d765d58958599705fb3d9d2c4d16 /Cargo.toml
parent326b5d9d96a5f45fa8b371f2a78394bcd87030e0 (diff)
parent4eea7cdff640f31f6595ec880d5405665fbd5c55 (diff)
downloadirsc-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.toml21
1 files changed, 17 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index f3d1253..23c7f2a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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