24 lines
929 B
TOML
24 lines
929 B
TOML
|
[package]
|
||
|
name = "hesinde-sync"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
license = { workspace = true }
|
||
|
authors = { workspace = true }
|
||
|
repository = { workspace = true }
|
||
|
|
||
|
[dependencies]
|
||
|
entity = { path = "../entity" }
|
||
|
migration = { path = "../migration" }
|
||
|
anyhow = "1.0.86"
|
||
|
clap = { version = "4.5.8", features = ["env", "derive"] }
|
||
|
poem = "3.0.1"
|
||
|
poem-openapi = { version = "5.0.2", features = ["swagger-ui"] }
|
||
|
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" ] }
|
||
|
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
|
||
|
tracing = "0.1.40"
|
||
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
||
|
uuid = { version = "1.10.0", features = ["v4", "fast-rng"] }
|