-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 848 Bytes
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "pgrepl"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.21.2", features = ["full"] }
# tokio-postgres = { git = "https://github.com/MaterializeInc/rust-postgres" }
tokio-postgres = { git = "https://github.com/MaterializeInc/rust-postgres", features = [
"serde",
] }
postgres-protocol = { git = "https://github.com/MaterializeInc/rust-postgres" }
mz-postgres-util = { git = "https://github.com/MaterializeInc/materialize" }
mz-repr = { git = "https://github.com/MaterializeInc/materialize" }
mz-expr = { git = "https://github.com/MaterializeInc/materialize" }
mz-pgcopy = { git = "https://github.com/MaterializeInc/materialize" }
anyhow = "*"
uuid = "*"
async-stream = "*"
futures = "*"
once_cell = "*"