[package] name = "astroresearch" version = "0.1.0" edition = "2021" [lib] path = "src/lib.rs" [[bin]] name = "astroresearch" path = "src/main.rs" [[bin]] name = "test_qiniu" path = "scratch/test_qiniu.rs" [dependencies] tokio = { version = "1", features = ["full"] } axum = { version = "0.7", features = ["macros"] } tower-http = { version = "0.5", features = ["cors", "fs", "trace"] } sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "sqlite", "chrono", "json"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" reqwest = { version = "0.12", features = ["json", "stream", "multipart", "cookies"] } dotenvy = "0.15" quick-xml = { version = "0.31", features = ["serialize"] } anyhow = "1.0" thiserror = "1.0" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] } futures-util = { version = "0.3", features = ["io"] } rand = "0.8" regex = "1.10" chrono = { version = "0.4", features = ["serde"] } sha1 = "0.10" hmac = "0.12" base64 = "0.22" urlencoding = "2.1" url = "2.5" html2md = "0.2" flate2 = "1.1.9" zip = "8.6.0" uuid = { version = "1.23.2", features = ["v4"] } tracing-appender = "0.2.5"