panorama/crates/panorama-daemon/Cargo.toml

44 lines
1.2 KiB
TOML
Raw Normal View History

2024-05-25 10:04:05 +00:00
[package]
name = "panorama-daemon"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.86"
axum = "0.7.5"
chrono = { version = "0.4.38", features = ["serde"] }
cozo = { version = "0.7.6", features = ["storage-rocksdb"] }
2024-05-27 04:07:02 +00:00
csv = "1.3.0"
2024-05-25 10:04:05 +00:00
dirs = "5.0.1"
futures = "0.3.30"
2024-05-27 06:27:17 +00:00
itertools = "0.13.0"
2024-05-25 10:04:05 +00:00
miette = "5.5.0"
2024-06-03 00:40:54 +00:00
panorama-core = { path = "../panorama-core" }
2024-05-25 10:04:05 +00:00
serde = { version = "1.0.202", features = ["derive"] }
serde_json = "1.0.117"
sugars = "3.0.1"
2024-06-02 23:12:03 +00:00
tantivy = { version = "0.22.0", features = ["zstd"] }
2024-05-25 10:04:05 +00:00
tokio = { version = "1.37.0", features = ["full"] }
tower = "0.4.13"
tower-http = { version = "0.5.2", features = ["cors"] }
uuid = { version = "1.8.0", features = ["v7"] }
2024-05-27 20:56:39 +00:00
2024-06-02 21:37:36 +00:00
[dependencies.utoipa]
git = "https://github.com/juhaku/utoipa"
features = ["axum_extras", "time", "uuid", "chrono", "yaml"]
[dependencies.utoipa-scalar]
git = "https://github.com/juhaku/utoipa"
features = ["axum"]
[dependencies.utoipa-swagger-ui]
git = "https://github.com/juhaku/utoipa"
features = ["axum"]
2024-05-27 20:56:39 +00:00
[dependencies.async-imap]
version = "0.9.7"
default-features = false
features = ["runtime-tokio"]