1
0
Mirror von https://github.com/Chaoscaot/schemsearch synchronisiert 2024-07-01 08:38:05 +02:00
schemsearch/schemsearch-cli/Cargo.toml
2024-04-27 21:27:42 +02:00

24 Zeilen
767 B
TOML
Ausführbare Datei

[package]
name = "schemsearch-cli"
version = "0.1.7"
edition = "2021"
license = "AGPL-3.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
schemsearch-lib = { path = "../schemsearch-lib" }
schemsearch-files = { path = "../schemsearch-files" }
schemsearch-sql = { path = "../schemsearch-sql", optional = true }
clap = { version = "4.1.8", features = ["cargo"] }
futures = { version = "0.3", optional = true }
sqlx = { version = "0.7", features = [ "runtime-async-std-native-tls" , "mysql" ], optional = true }
rayon = "1.7.0"
indicatif = { version = "0.17.3", features = ["rayon"] }
serde = "1.0.157"
serde_json = "1.0.94"
[features]
sql = ["dep:schemsearch-sql", "dep:futures", "dep:sqlx"]