-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (38 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
41 lines (38 loc) · 1.16 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
[package]
name = "dbscope"
version = "0.2.2"
edition = "2021"
description = "Universal relational schema intelligence for SQL databases (Postgres, MySQL, SQLite, ClickHouse). Understand your database before you touch it."
license = "MIT OR Apache-2.0"
repository = "https://github.com/jayvenn21/dbscope"
homepage = "https://github.com/jayvenn21/dbscope"
readme = "README.md"
keywords = ["database", "schema", "postgres", "risk", "migration"]
categories = ["command-line-utilities", "database"]
exclude = [
"dbscope-report.*",
"dbscope-graph.dot",
"demo-reports/",
]
[dependencies]
tokio = { version = "1", features = ["full"] }
async-trait = "0.1"
sqlx = { version = "0.7", features = ["runtime-tokio", "postgres", "mysql", "sqlite"] }
clickhouse = "0.12"
clap = { version = "4", features = ["derive", "env"] }
petgraph = "0.6"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
anyhow = "1"
sqlparser = "0.45"
serde_yaml = "0.9"
clap_complete = "4"
chrono = "0.4"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
tempfile = "3"
[[bench]]
name = "pipeline"
path = "benches/pipeline_bench.rs"
harness = false