27 lines
839 B
TOML
27 lines
839 B
TOML
[package]
|
|
name = "magnetar_calckey_model"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["rlib"]
|
|
|
|
[dependencies]
|
|
ck = { path = "./entity_ck" }
|
|
ext_calckey_model_migration = { path = "./migration" }
|
|
|
|
magnetar_common = { path = "../magnetar_common" }
|
|
|
|
dotenvy = { workspace = true}
|
|
futures-core = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tokio-util = { workspace = true}
|
|
redis = { workspace = true, features = ["tokio-comp", "json", "serde_json"]}
|
|
sea-orm = { workspace = true, features = ["sqlx-postgres", "runtime-tokio-rustls", "macros"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
strum = { workspace = true }
|
|
chrono = { workspace = true }
|
|
tracing = { workspace = true }
|
|
thiserror = { workspace = true } |