aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTill Hoeppner2015-06-28 21:56:36 +0200
committerTill Hoeppner2015-06-28 21:56:36 +0200
commitf0ee5be572168542774739cf713b7eeca2cbc598 (patch)
treea90f5742bee73c23a2a0f95c38ff1de0c96351a7
parent9dbe41f60d411ed28ac360b4585b473100d306de (diff)
downloadirsc-f0ee5be572168542774739cf713b7eeca2cbc598.tar.gz
irsc-f0ee5be572168542774739cf713b7eeca2cbc598.tar.xz
irsc-f0ee5be572168542774739cf713b7eeca2cbc598.zip
Fix dependency versions
-rw-r--r--Cargo.toml10
1 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index b23c4b9..64e8404 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "irsc"
-version = "0.1.1"
+version = "0.2.0"
authors = ["Till Hoeppner <till@hoeppner.ws>"]
description = "A lightweight library for building IRC bots."
documentation = "https://tilpner.github.io/irsc"
@@ -10,10 +10,10 @@ keywords = ["irc", "internet", "protocol"]
license = "MIT"
[dependencies]
-log = "*"
-regex = "*"
-regex_macros = "*"
-openssl = "*"
+log = "^0.3"
+regex = "^0.1"
+regex_macros = "^0.1"
+openssl = "^0.6"
[features]
lints = ["clippy"]