forked from flisky/diesel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 1004 Bytes
/
Cargo.toml
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
[package]
name = "diesel_tests"
version = "0.1.0"
authors = ["Sean Griffin <[email protected]>"]
license = "MIT OR Apache-2.0"
autotests = false
autobenches = false
edition = "2018"
[dependencies]
assert_matches = "1.0.1"
chrono = { version = "0.4.19", default-features = false, features = ["clock", "std"] }
diesel = { path = "../diesel", default-features = false, features = ["quickcheck", "chrono", "uuid", "serde_json", "network-address", "numeric", "with-deprecated"] }
diesel_migrations = { path = "../diesel_migrations" }
dotenv = "0.15"
quickcheck = "1.0.3"
uuid = { version = ">=0.7.0, <0.9.0" }
serde_json = { version=">=0.9, <2.0" }
ipnetwork = ">=0.12.2, <0.19.0"
bigdecimal = ">= 0.0.13, < 0.4.0"
rand = "0.8.4"
libsqlite3-sys = { version = "0.23", optional = true }
[features]
default = []
unstable = ["diesel/unstable"]
postgres = ["diesel/postgres"]
sqlite = ["diesel/sqlite"]
mysql = ["diesel/mysql"]
[[test]]
name = "integration_tests"
path = "tests/lib.rs"
harness = true