Menu
AkurAI-Build
publicLatest change 3896462d3ab4899efbd6ab9288eed636eba0eed7 - deps: disable unused axum default features by Olafur Bui
[package]
name = "bunfork"
version = "0.1.0"
edition = "2024"
license = "MIT"
description = "A small, secure Linux-first Rust web runtime for verified static artifacts, MiniJinja pages, and encrypted vectors (not a fork of Bun)"
[dependencies]
anyhow = "1.0.103"
axum = { version = "0.8.9", default-features = false, features = ["http1", "json", "original-uri", "tokio"] }
clap = { version = "4.6.1", features = ["derive", "env"] }
getrandom = "0.4.3"
minijinja = "2.21.0"
percent-encoding = "2.3.2"
# Reproducibility comes from Cargo.lock + `cargo build --locked`, which also
# pins the security-relevant transitive C stack (libsqlite3-sys, openssl-src)
# that an exact rusqlite pin never covered.
rusqlite = { version = "0.40.1", default-features = false, features = ["bundled-sqlcipher-vendored-openssl", "limits"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
sha2 = "0.10.9"
subtle = "2.6.1"
tempfile = "3.27.0"
tokio = { version = "1.52.3", features = ["fs", "macros", "net", "rt-multi-thread", "signal"] }
tower = { version = "0.5.3", features = ["limit", "util"] }
tower-http = { version = "0.7.0", features = ["compression-gzip", "timeout", "trace"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
zeroize = "1.9.0"
[dev-dependencies]
proptest = "1.9.0"
[target.'cfg(unix)'.dependencies]
libc = "0.2.183"
[lints.rust]
unsafe_code = "deny"
[lints.clippy]
dbg_macro = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[profile.release]
codegen-units = 1
lto = true
strip = "symbols"