bunbun/Cargo.toml

35 lines
746 B
TOML
Raw Normal View History

2019-12-15 16:07:36 +00:00
[package]
name = "bunbun"
2020-09-28 04:52:08 +00:00
version = "0.8.0"
2019-12-15 16:07:36 +00:00
authors = ["Edward Shen <code@eddie.sh>"]
2022-06-03 03:08:04 +00:00
edition = "2021"
2019-12-15 16:07:36 +00:00
description = "Re-implementation of bunny1 in Rust"
2019-12-15 19:57:42 +00:00
license = "AGPL-3.0"
readme = "README.md"
2019-12-15 20:07:26 +00:00
repository = "https://github.com/edward-shen/bunbun"
2019-12-29 05:16:41 +00:00
exclude = ["/aux/"]
2019-12-15 16:07:36 +00:00
[dependencies]
2022-06-03 04:58:56 +00:00
anyhow = "1"
arc-swap = "1"
2022-06-03 05:50:11 +00:00
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
2022-06-03 04:58:56 +00:00
axum = "0.5"
2022-06-03 03:08:04 +00:00
clap = { version = "3", features = ["wrap_help", "derive", "cargo"] }
dirs = "4"
handlebars = "4"
hotwatch = "0.4"
2019-12-23 19:09:49 +00:00
log = "0.4"
2021-04-05 19:00:58 +00:00
percent-encoding = "2"
2022-06-03 04:58:56 +00:00
serde = { version = "1", features = ["derive"] }
2020-11-04 01:20:08 +00:00
serde_yaml = "0.8"
2021-04-05 19:00:58 +00:00
serde_json = "1"
2022-06-03 03:08:04 +00:00
simple_logger = "2"
2019-12-15 18:54:09 +00:00
2019-12-29 05:08:13 +00:00
[dev-dependencies]
2021-04-05 19:00:58 +00:00
tempfile = "3"
2019-12-29 05:08:13 +00:00
2019-12-15 18:54:09 +00:00
[profile.release]
lto = true
2022-06-03 05:50:21 +00:00
codegen-units = 1
strip = true