2023-04-21 23:39:52 +00:00
|
|
|
[package]
|
|
|
|
name = "magnetar_calckey_model"
|
2023-07-07 19:22:30 +00:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
2023-04-21 23:39:52 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["rlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
ck = { path = "./entity_ck" }
|
2023-07-29 03:20:00 +00:00
|
|
|
ext_calckey_model_migration = { path = "./migration" }
|
|
|
|
|
2023-07-20 13:38:52 +00:00
|
|
|
magnetar_common = { path = "../magnetar_common" }
|
2023-04-21 23:39:52 +00:00
|
|
|
|
2023-07-07 19:22:30 +00:00
|
|
|
dotenvy = { workspace = true}
|
2023-08-02 01:10:53 +00:00
|
|
|
futures-core = { workspace = true }
|
|
|
|
futures-util = { workspace = true }
|
2023-07-07 19:22:30 +00:00
|
|
|
tokio = { workspace = true, features = ["full"] }
|
2023-08-02 01:10:53 +00:00
|
|
|
tokio-util = { workspace = true}
|
|
|
|
redis = { workspace = true, features = ["tokio-comp", "json", "serde_json"]}
|
2023-07-07 19:22:30 +00:00
|
|
|
sea-orm = { workspace = true, features = ["sqlx-postgres", "runtime-tokio-rustls", "macros"] }
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
serde_json = { workspace = true }
|
2023-08-02 01:10:53 +00:00
|
|
|
strum = { workspace = true }
|
2023-07-07 19:22:30 +00:00
|
|
|
chrono = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|