-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (30 loc) · 1.07 KB
/
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 = "tmp-postgrust"
version = "0.9.0"
authors = ["John Children <[email protected]>"]
license = "MIT"
edition = "2018"
description = "Temporary postgresql instances for testing"
repository = "https://github.com/CQCL/tmp-postgrust"
readme = "README.md"
keywords = ["testing", "database", "postgres"]
[badges]
maintenance = { status = "experimental" }
[dependencies]
ctor = "0.2"
glob = "0.3"
nix = "0.26"
reflink-copy = "0.1"
tempfile = "3"
thiserror = "1.0"
tokio = { version = "1.8", features = ["parking_lot", "rt", "sync", "io-util", "process", "macros", "fs"], default-features = false, optional = true }
tracing = "0.1"
which = "4.0"
[dev-dependencies]
test-log = { version = "0.2", default-features = false, features = ["trace"] }
tokio = { version = "1.8", features = ["parking_lot", "rt", "rt-multi-thread", "sync", "io-util", "process", "macros", "fs"], default-features = false }
tokio-postgres = "0.7"
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] }
[features]
default = []
tokio-process = ["tokio"]