From 8191c9b6f984dcce54a1003240deacdc4ec1c46a Mon Sep 17 00:00:00 2001 From: Jimmy Cuadra Date: Thu, 14 Apr 2016 08:48:36 -0700 Subject: [PATCH] Make syntex optional and bump version to 0.5.2. --- Cargo.toml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c33af7f..67dbe16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,15 +9,16 @@ license = "MIT" name = "etcd" readme = "README.md" repository = "https://github.com/jimmycuadra/rust-etcd" -version = "0.5.1" - -[build-dependencies] -syntex = "0.31.0" +version = "0.5.2" [build-dependencies.serde_codegen] optional = true version = "0.7.2" +[build-dependencies.syntex] +optional = true +version = "0.31.0" + [dependencies] hyper = "0.8.1" openssl = "0.7.9" @@ -30,5 +31,5 @@ optional = true version = "0.7.2" [features] -default = ["serde_codegen"] +default = ["serde_codegen", "syntex"] nightly = ["serde_macros"]