-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (30 loc) · 885 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
32
33
[package]
name = "sqlant"
version = "0.5.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/kurotych/sqlant"
keywords = ["cli", "sql", "plantuml", "postgresql", "mermaid"]
categories = ["command-line-utilities"]
readme = "README.md"
description = "Generate PlantUML/Mermaid ER diagram textual description from SQL connection string"
authors = ["Anatolii Kurotych <[email protected]>"]
[dependencies]
async-trait = "0.1"
thiserror = "1.0"
tinytemplate = "1.2"
serde = { version = "1.0", features = ["derive"] }
strum = "0.26"
strum_macros = "0.26"
clap = "4.1.4"
tokio-postgres = "0.7"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
postgres-native-tls = "0.5.0"
native-tls = "0.2.13"
[profile.release]
opt-level = "z" # Optimize for size.
strip = true
lto = true
[features]
default = ["vendored-tls"]
vendored-tls = ["native-tls/vendored"]