22 lines
628 B
TOML
22 lines
628 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}
|
|
tokio = { workspace = true, features = ["full"] }
|
|
sea-orm = { workspace = true, features = ["sqlx-postgres", "runtime-tokio-rustls", "macros"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
chrono = { workspace = true }
|
|
tracing = { workspace = true }
|
|
thiserror = { workspace = true } |