aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
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