bin/Cargo.toml

40 lines
918 B
TOML
Raw Permalink Normal View History

2019-02-10 21:35:04 +00:00
[package]
name = "bin"
2023-11-27 20:19:47 +00:00
version = "2.0.1"
2019-02-16 19:25:39 +00:00
description = "a paste bin."
repository = "https://github.com/w4/bin"
license = "WTFPL OR 0BSD"
2019-02-10 21:35:04 +00:00
authors = ["Jordan Doyle <jordan@doyle.la>"]
2022-03-14 22:45:28 +00:00
edition = "2021"
2019-02-10 21:35:04 +00:00
[dependencies]
2020-04-13 10:33:52 +00:00
argh = "0.1"
log = "0.4"
2023-11-27 20:14:54 +00:00
pretty_env_logger = "0.5"
linked-hash-map = "0.5"
once_cell = "1.19"
2022-03-14 22:45:27 +00:00
parking_lot = "0.12"
bytes = { version = "1.2", features = ["serde"] }
2020-04-13 10:33:52 +00:00
serde = { version = "1.0", features = ["derive"] }
2022-03-14 22:45:27 +00:00
rand = { version = "0.8" }
2019-02-10 21:35:04 +00:00
gpw = "0.1"
2022-03-14 22:45:27 +00:00
actix = "0.13"
actix-web = "4.4"
2020-04-13 10:33:52 +00:00
htmlescape = "0.3"
2023-11-27 20:14:54 +00:00
askama = "0.12"
bat = "0.24"
syntect = "5.1"
tokio = { version = "1.35", features = ["sync"] }
2020-04-13 10:33:52 +00:00
futures = "0.3"
[profile.release]
lto = true
codegen-units = 1
2019-02-16 19:25:39 +00:00
incremental = false
[badges]
travis-ci = { repository = "w4/bin" }
is-it-maintained-issue-resolution = { repository = "w4/bin" }
is-it-maintained-open-issues = { repository = "w4/bin" }
maintenance = { status = "passively-maintained" }