ecr-server 0.2.2

The ecr mail server: REST, SSE, bearer auth and a maildir watcher over ecr-store
Documentation
[package]
name = "ecr-server"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
rust-version.workspace = true
keywords.workspace = true
categories.workspace = true
description = "The ecr mail server: REST, SSE, bearer auth and a maildir watcher over ecr-store"

# The integration tests build a throwaway notmuch database from fixtures/ at
# the repository root, which a published .crate cannot carry. Shipping them
# would mean shipping a test suite that fails on the first path lookup, so the
# crate carries the library and the repository carries the tests.
exclude = ["tests/"]

[dependencies]
ecr-core = { workspace = true }
ecr-store = { workspace = true }
anyhow = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
axum = "0.8.9"
tower-http = { version = "0.7.0", features = ["cors", "fs", "trace"] }
tokio-stream = { version = "0.1.19", features = ["sync"] }
futures = "0.3.33"
sha2 = "0.11.0"
subtle = "2.6.1"
rand = "0.10.2"
hex = "0.4.3"
chrono.workspace = true
dirs.workspace = true
toml.workspace = true
serde = { workspace = true, features = ["derive"] }
notify = "8.2.0"

[dev-dependencies]
reqwest = { version = "0.13.4", default-features = false, features = ["json"] }
tempfile = "3.27.0"