forked from sfackler/rust-postgres
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
31 lines (28 loc) · 857 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
[package]
name = "postgres-replication"
version = "0.6.7"
authors = ["Petros Angelatos <[email protected]>"]
edition = "2018"
description = "Protocol definitions for the Postgres logical replication protocol"
license = "MIT OR Apache-2.0"
repository = "https://github.com/sfackler/rust-postgres"
readme = "../README.md"
[features]
default = []
[dependencies]
bytes = "1.0"
memchr = "2.0"
byteorder = "1.0"
postgres-protocol = { version = "0.6.7", path = "../postgres-protocol" }
postgres-types = { version = "0.2.7", path = "../postgres-types" }
tokio-postgres = { version = "0.7.11", path = "../tokio-postgres", features = ["runtime"] }
futures-util = { version = "0.3", features = ["sink"] }
pin-project-lite = "0.2"
[dev-dependencies]
tokio = { version = "1.0", features = [
"macros",
"net",
"rt",
"rt-multi-thread",
"time",
] }