-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (48 loc) · 1.56 KB
/
Cargo.toml
File metadata and controls
56 lines (48 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "async-postgres"
version = "0.5.1"
authors = ["Hexilee <i@hexilee.me>"]
edition = "2018"
license = "MIT"
description = "A runtime-independent, asynchronous PostgreSQL client."
repository = "https://github.com/Hexilee/async-postgres"
readme = "README.md"
keywords = ["database", "postgres", "postgresql", "sql", "async"]
categories = ["database"]
[package.metadata.docs.rs]
features = ["docs"]
rustdoc-args = ["--cfg", "feature=\"docs\""]
[badges]
codecov = { repository = "Hexilee/async-postgres" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytes = "0.5"
tokio-postgres = { version = "0.5", default-features = false }
tokio = "0.2"
async-std = "1.6"
futures = { version = "0.3", default-features = false }
[dev-dependencies]
async-std = { version = "1.6", features = ["attributes"] }
tokio = { version = "0.2", features = ["full"] }
tokio-postgres = "0.5"
postgres-native-tls = "0.3"
native-tls = "0.2"
[features]
docs = ["full"]
full = ["all-types"]
all-types = [
"with-bit-vec-0_6",
"with-chrono-0_4",
"with-eui48-0_4",
"with-geo-types-0_4",
"with-serde_json-1",
"with-uuid-0_8",
"with-time-0_2"
]
with-bit-vec-0_6 = ["tokio-postgres/with-bit-vec-0_6"]
with-chrono-0_4 = ["tokio-postgres/with-chrono-0_4"]
with-eui48-0_4 = ["tokio-postgres/with-eui48-0_4"]
with-geo-types-0_4 = ["tokio-postgres/with-geo-types-0_4"]
with-serde_json-1 = ["tokio-postgres/with-serde_json-1"]
with-uuid-0_8 = ["tokio-postgres/with-uuid-0_8"]
with-time-0_2 = ["tokio-postgres/with-time-0_2"]