1
0
Mirror von https://github.com/Chaoscaot/schemsearch synchronisiert 2024-07-03 09:38:04 +02:00
schemsearch/schemsearch-cli/Cargo.toml

24 Zeilen
767 B
TOML

2023-03-04 12:20:20 +01:00
[package]
name = "schemsearch-cli"
2024-04-27 21:27:42 +02:00
version = "0.1.7"
2023-03-04 12:20:20 +01:00
edition = "2021"
2023-03-08 15:47:51 +01:00
license = "AGPL-3.0-or-later"
2023-03-04 12:20:20 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
schemsearch-lib = { path = "../schemsearch-lib" }
2023-03-06 18:29:03 +01:00
schemsearch-files = { path = "../schemsearch-files" }
2023-03-08 15:47:51 +01:00
schemsearch-sql = { path = "../schemsearch-sql", optional = true }
2023-03-06 18:29:03 +01:00
clap = { version = "4.1.8", features = ["cargo"] }
2023-03-08 15:47:51 +01:00
futures = { version = "0.3", optional = true }
sqlx = { version = "0.7", features = [ "runtime-async-std-native-tls" , "mysql" ], optional = true }
2023-03-11 11:34:40 +01:00
rayon = "1.7.0"
2023-03-12 14:13:55 +01:00
indicatif = { version = "0.17.3", features = ["rayon"] }
2023-03-19 11:57:22 +01:00
serde = "1.0.157"
serde_json = "1.0.94"
2023-03-08 15:47:51 +01:00
[features]
2023-03-11 11:34:40 +01:00
sql = ["dep:schemsearch-sql", "dep:futures", "dep:sqlx"]