2024-07-10 12:30:26 +00:00
|
|
|
[package]
|
|
|
|
name = "hesinde-sync"
|
2024-07-11 05:39:46 +00:00
|
|
|
version = "0.2.0"
|
2024-07-10 12:30:26 +00:00
|
|
|
edition = "2021"
|
|
|
|
license = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
entity = { path = "../entity" }
|
|
|
|
migration = { path = "../migration" }
|
|
|
|
anyhow = "1.0.86"
|
2024-07-11 05:39:03 +00:00
|
|
|
clap = { version = "4.5.9", features = ["env", "derive"] }
|
2024-07-10 12:30:26 +00:00
|
|
|
poem = "3.0.1"
|
2024-07-11 05:39:03 +00:00
|
|
|
poem-openapi = "5.0.2"
|
2024-07-10 12:30:26 +00:00
|
|
|
sea-orm = { workspace = true, features = ["with-time", "sqlx-sqlite", "sqlx-postgres", "sqlx-mysql", "runtime-tokio-rustls", "macros" ] }
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
thiserror = "1.0.61"
|
|
|
|
time = { workspace = true, features = ["macros", "serde", "formatting", "parsing" ] }
|
2024-07-10 18:56:48 +00:00
|
|
|
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread", "signal"] }
|
2024-07-10 12:30:26 +00:00
|
|
|
tracing = "0.1.40"
|
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
|
|
uuid = { version = "1.10.0", features = ["v4", "fast-rng"] }
|