[package] name = "pilcrow" version = "0.1.0" edition = "2024" rust-version = "1.90" authors = [ "Owen Jacobson ", "Kit La Touche ", ] [package.metadata.deb] maintainer = "Owen Jacobson " maintainer-scripts = "debian" assets = [ # Binaries ["target/release/pilcrow", "/usr/bin/pilcrow", "755"], # Configuration ["debian/default", "/etc/default/pilcrow", "644"], ] [package.metadata.deb.systemd-units] [dependencies] argon2 = "0.5.3" axum = { version = "0.8.1", features = ["form"] } axum-extra = { version = "0.10.0", features = ["cookie", "query", "typed-header"] } base64 = "0.22.1" chrono = { version = "0.4.39", features = ["serde"] } clap = { version = "4.5.30", features = ["derive", "env"] } futures = "0.3.31" headers = "0.4.0" hex-literal = "0.4.1" itertools = "0.14.0" mime = "0.3.17" nix = { version = "0.30.1", features = ["fs"] } p256 = { version = "0.13.2", features = ["ecdsa"] } password-hash = { version = "0.5.0", features = ["std"] } rand = "0.8.5" rand_core = { version = "0.6.4", features = ["getrandom"] } # Pinned to maintain libsqlite3 version match between this and sqlx. See also: # rusqlite = { version = "=0.32.1", features = ["backup"] } rust-embed = { version = "8.5.0", features = ["interpolate-folder-path"] } serde = { version = "1.0.217", features = ["derive"] } serde_json = "1.0.138" serde_with = "3.14.0" # Pinned to maintain libsqlite3 version match between this and rusqlite. See # also: sqlx = { version = "=0.8.3", features = ["chrono", "runtime-tokio", "sqlite"] } thiserror = "2.0.11" tokio = { version = "1.43.0", features = ["rt", "macros", "rt-multi-thread"] } tokio-stream = { version = "0.1.17", features = ["sync"] } tower = "0.5.2" unicode-casefold = "0.2.0" unicode-normalization = "0.1.24" unicode-segmentation = "1.12.0" unix_path = "1.0.1" uuid = { version = "1.13.2", features = ["v4"] } web-push = "0.11.0" [dev-dependencies] faker_rand = "0.1.1" pin-project = "1.1.9" rand = "0.8.5"