20 lines
512 B
TOML
20 lines
512 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", "rt-multi-thread"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
reqwest = { workspace = true, features = ["json"] }
|
|
log = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
simplelog = "0.12.2" |