bunbun/Cargo.toml

30 lines
585 B
TOML
Raw Normal View History

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