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-07 19:22:30 +00:00
|
|
|
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 }
|