bazzar/crates/model/Cargo.toml

34 lines
1.0 KiB
TOML
Raw Normal View History

2022-05-06 11:47:18 +02:00
[package]
name = "model"
version = "0.1.0"
edition = "2021"
[features]
db = ["sqlx", "sqlx-core"]
2022-05-06 16:02:38 +02:00
dummy = ["fake", "rand"]
2022-05-06 11:47:18 +02:00
2022-12-01 17:39:06 +01:00
accounts = []
carts = []
emails = []
search = []
stocks = []
orders = []
payments = []
default = ['accounts', 'carts', 'emails', 'search', 'stocks', 'orders', 'payments']
2022-05-06 11:47:18 +02:00
[dependencies]
2022-12-20 15:34:20 +01:00
argon2 = { version = "0", features = ["parallel", "password-hash"] }
chrono = { version = "0", features = ["serde"] }
derive_more = { version = "0" }
2022-10-31 09:28:49 +01:00
fake = { version = "2", features = ["derive", "chrono", "http", "uuid", "dummy"], optional = true }
2023-05-05 14:20:50 +02:00
password-hash = { version = "=0.4.2", features = ["alloc"] }
2022-12-20 15:34:20 +01:00
rand = { version = "0", optional = true }
rand_core = { version = "0", features = ["std"] }
serde = { version = "1" }
sqlx = { version = "0", features = ["migrate", "runtime-actix-rustls", "all-types", "postgres"], optional = true }
sqlx-core = { version = "0", features = [], optional = true }
thiserror = { version = "1" }
2023-06-03 13:31:57 +02:00
tracing = { version = "0.1.37" }
2022-12-20 15:34:20 +01:00
uuid = { version = "1", features = ["serde"] }
validator = { version = "0" }