dropdir 0.1.1

A tiny, zero-config file manager served over HTTP from a local directory. Browse, upload, rename, delete, and edit files in your browser from a single self-contained Rust binary.
[package]
name = "dropdir"
version = "0.1.1"
edition = "2024"
rust-version = "1.85"
authors = ["zhanboliang"]
description = "A tiny, zero-config file manager served over HTTP from a local directory. Browse, upload, rename, delete, and edit files in your browser from a single self-contained Rust binary."
documentation = "https://docs.rs/dropdir"
homepage = "https://github.com/zhanboliang/dropdir"
repository = "https://github.com/zhanboliang/dropdir"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["file-manager", "http", "server", "upload", "cli"]
categories = ["command-line-utilities", "filesystem", "web-programming::http-server"]
exclude = [
    ".github/",
    ".gitignore",
    ".DS_Store",
    "**/.DS_Store",
    "target/",
    "*.log",
]

[dependencies]
axum = { version = "0.7", features = ["multipart"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs", "io-util", "net", "signal"] }
tower-http = { version = "0.5", features = ["limit"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
mime_guess = "2"
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
futures-util = "0.3"
tokio-util = { version = "0.7", features = ["io"] }
getrandom = "0.2"
if-addrs = "0.13"

[profile.release]
lto = true
strip = true