1
0
Mirror von https://github.com/Chaoscaot/schemsearch synchronisiert 2024-10-01 20:20:12 +02:00
schemsearch/schemsearch-cli/Cargo.toml

20 Zeilen
656 B
TOML

2023-03-04 12:20:20 +01:00
[package]
name = "schemsearch-cli"
version = "0.1.0"
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.6", features = [ "runtime-async-std-native-tls" , "mysql" ], optional = true }
[features]
sql = [ "dep:schemsearch-sql", "dep:futures", "dep:sqlx" ]