32 lines
715 B
TOML
32 lines
715 B
TOML
[package]
|
|
name = "bunbun"
|
|
version = "0.8.0"
|
|
authors = ["Edward Shen <code@eddie.sh>"]
|
|
edition = "2021"
|
|
description = "Re-implementation of bunny1 in Rust"
|
|
license = "AGPL-3.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/edward-shen/bunbun"
|
|
exclude = ["/aux/"]
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
arc-swap = "1"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
axum = "0.5"
|
|
clap = { version = "3", features = ["wrap_help", "derive", "cargo"] }
|
|
dirs = "4"
|
|
handlebars = "4"
|
|
hotwatch = "0.4"
|
|
log = "0.4"
|
|
percent-encoding = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_yaml = "0.8"
|
|
serde_json = "1"
|
|
simple_logger = "2"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
|
|
[profile.release]
|
|
lto = true
|