lldap/model/Cargo.toml
Valentin Tolmer cace6eb135 Add sqlx as conditional dependency to the model
That way, we can use query_as
2021-05-09 10:10:17 +02:00

16 lines
443 B
TOML

[package]
name = "lldap_model"
version = "0.1.0"
authors = ["Valentin Tolmer <valentin@tolmer.fr>", "Steve Barrau <steve.barrau@gmail.com>", "Thomas Wickham <mackwic@gmail.com>"]
edition = "2018"
[features]
js = []
[dependencies]
chrono = "*"
serde = "*"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
sqlx = { version = "0.5", features = [ "runtime-actix-native-tls", "any", "sqlite", "mysql", "postgres", "macros" , "chrono"] }