blob: c773d05f6d28ae5f277a090a7ebc039d8e27c866 [file] [log] [blame]
[package]
name = "diesel_tests"
version = "0.1.0"
authors = ["Sean Griffin <sean@seantheprogrammer.com>"]
license = "MIT OR Apache-2.0"
build = "build.rs"
[build-dependencies]
diesel = { path = "../diesel", default-features = false }
diesel_migrations = { version = "1.0.0" }
dotenv = ">=0.8, <0.11"
[dependencies]
assert_matches = "1.0.1"
chrono = { version = "0.4" }
diesel = { path = "../diesel", default-features = false, features = ["quickcheck", "chrono", "uuid", "serde_json", "network-address", "numeric", "with-deprecated", "large-tables"] }
diesel_infer_schema = { version = "1.0.0" }
diesel_migrations = { version = "1.0.0" }
dotenv = ">=0.8, <0.11"
quickcheck = { version = "0.4", features = ["unstable"] }
uuid = { version = ">=0.2.0, <0.6.0" }
serde_json = { version=">=0.9, <2.0" }
ipnetwork = "0.12.2"
bigdecimal = "0.0.10"
[features]
default = []
unstable = ["diesel/unstable"]
postgres = ["diesel/postgres", "diesel_infer_schema/postgres"]
sqlite = ["diesel/sqlite", "diesel_infer_schema/sqlite"]
mysql = ["diesel/mysql", "diesel_infer_schema/mysql"]
lint = ["diesel/lint"]
[[test]]
name = "integration_tests"
path = "tests/lib.rs"
harness = true
[[bench]]
name = "benchmarks"
path = "tests/bench.rs"
bench = true