-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 814 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 814 Bytes
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
[package]
name = "pg-blast-radius"
version = "0.4.0"
edition = "2021"
description = "Workload-aware blast radius forecaster for PostgreSQL migrations"
license = "MIT"
repository = "https://github.com/michaelmillar/pg-blast-radius"
readme = "README.md"
keywords = ["postgres", "migration", "database", "devops", "ci"]
categories = ["command-line-utilities", "database"]
[dependencies]
pg_query = "6"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
owo-colors = "4"
tokio = { version = "1", features = ["rt", "net"], optional = true }
tokio-postgres = { version = "0.7", optional = true }
[features]
default = ["catalog"]
catalog = ["dep:tokio", "dep:tokio-postgres"]
[dev-dependencies]
insta = { version = "1", features = ["json"] }