23 lines
653 B
TOML
23 lines
653 B
TOML
[package]
|
|
name = "entry"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "sekai_sync_lib"
|
|
crate-type = ["rlib", "cdylib"]
|
|
|
|
[dependencies]
|
|
common = { path = "../common" }
|
|
assets-updater = { path = "../assets-updater" }
|
|
|
|
tokio = { workspace = true, features = ["macros", "rt", "sync", ] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
reqwest = { workspace = true, features = ["json"] }
|
|
log = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
fern = { workspace = true, features = ["colored"] }
|
|
futures = { workspace = true }
|
|
mimalloc = { workspace = true, default-features = false }
|
|
chrono = { workspace = true } |