bunbun/Cargo.toml

31 lines
610 B
TOML
Raw Normal View History

2019-12-15 16:07:36 +00:00
[package]
name = "bunbun"
2020-07-05 04:14:01 +00:00
version = "0.7.0"
2019-12-15 16:07:36 +00:00
authors = ["Edward Shen <code@eddie.sh>"]
edition = "2018"
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]
2020-09-27 19:29:26 +00:00
actix-web = "3.0"
actix-rt = "1.1"
dirs = "3.0"
2019-12-15 16:07:36 +00:00
serde = "1.0"
serde_yaml = "0.8"
2020-09-28 04:51:02 +00:00
serde_json = "1.0"
2020-09-27 19:29:26 +00:00
handlebars = "3.5"
hotwatch = "0.4"
percent-encoding = "2.1"
2019-12-23 19:09:49 +00:00
log = "0.4"
simple_logger = "1.3"
clap = { version = "3.0.0-beta.1", features = ["wrap_help"] }
2019-12-15 18:54:09 +00:00
2019-12-29 05:08:13 +00:00
[dev-dependencies]
tempfile = "3.1"
2019-12-15 18:54:09 +00:00
[profile.release]
lto = true