From bc196e2e038d11e97a7b53fceb85dd47a38a2309 Mon Sep 17 00:00:00 2001 From: Sean Griffin Date: Thu, 3 Dec 2015 08:17:59 -0700 Subject: [PATCH] Point at main quickcheck repo Our changes have been merged. --- diesel/Cargo.toml | 4 ++-- diesel_tests/Cargo.toml | 7 ++----- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/diesel/Cargo.toml b/diesel/Cargo.toml index d8f0ea06efa0..9b26f8582c44 100644 --- a/diesel/Cargo.toml +++ b/diesel/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["orm", "database", "postgres", "postgresql", "sql"] libc = "0.2.*" pq-sys = "0.2.*" byteorder = "0.3.*" -quickcheck = { git = "https://github.com/sgrif/quickcheck.git", rev = "7020692b18196d9d29718b31d8b2c7d1c4df3190", optional = true } +quickcheck = { git = "https://github.com/BurntSushi/quickcheck.git", optional = true } [dev-dependencies] -quickcheck = { git = "https://github.com/sgrif/quickcheck.git", rev = "7020692b18196d9d29718b31d8b2c7d1c4df3190" } +quickcheck = { git = "https://github.com/BurntSushi/quickcheck.git" } dotenv = "^0.6.0" [features] diff --git a/diesel_tests/Cargo.toml b/diesel_tests/Cargo.toml index aa3ebaea277c..d8991aaf01f0 100644 --- a/diesel_tests/Cargo.toml +++ b/diesel_tests/Cargo.toml @@ -6,7 +6,6 @@ license = "MIT" build = "build.rs" [build-dependencies] -quasi_codegen = { verision = "^0.3.8", optional = true } syntex = { version = "^0.22.0", optional = true } diesel_codegen = { path = "../diesel_codegen", default-features = false } @@ -14,15 +13,13 @@ diesel_codegen = { path = "../diesel_codegen", default-features = false } diesel = { path = "../diesel", features = ["quickcheck"] } diesel_codegen = { path = "../diesel_codegen", default-features = false } compiletest_rs = { version = "^0.0.10", optional = true } -syntex = { version = "^0.22.0", optional = true } -syntex_syntax = { version = "^0.22.0", optional = true } [dev-dependencies] -quickcheck = { git = "https://github.com/sgrif/quickcheck.git", rev = "7020692b18196d9d29718b31d8b2c7d1c4df3190" } +quickcheck = { git = "https://github.com/BurntSushi/quickcheck.git" } dotenv = "^0.6.0" [features] -default = ["syntex", "syntex_syntax", "diesel_codegen/with-syntex"] +default = ["syntex", "diesel_codegen/with-syntex"] unstable = ["compiletest_rs", "diesel_codegen/nightly", "diesel/unstable", "quickcheck/unstable"] [[test]]