19 lines
522 B
TOML
19 lines
522 B
TOML
[package]
|
|
name = "magnetar_calckey_model"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["rlib"]
|
|
|
|
[dependencies]
|
|
ck = { path = "./entity_ck" }
|
|
|
|
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 } |