forked from diesel-rs/diesel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1.18 KB
/
Copy pathCargo.toml
File metadata and controls
41 lines (36 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[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.3.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"] }
diesel_infer_schema = { version = "1.3.0" }
diesel_migrations = { version = "1.3.0" }
dotenv = ">=0.8, <0.11"
quickcheck = { version = "0.4", features = ["unstable"] }
uuid = { version = ">=0.2.0, <0.7.0" }
serde_json = { version=">=0.9, <2.0" }
ipnetwork = "0.12.2"
bigdecimal = ">= 0.0.10, < 0.0.13"
[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"]
[[test]]
name = "integration_tests"
path = "tests/lib.rs"
harness = true
[[bench]]
name = "benchmarks"
path = "tests/bench.rs"
bench = true