-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 717 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (24 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "rktpb"
version = "1.0.0"
authors = ["Sergio Benitez <sb@sergio.bz>"]
edition = "2021"
description = "A pastebin that does just enough to be really useful."
repository = "https://github.com/SergioBenitez/rktpb"
readme = "README.md"
keywords = ["pastebin", "rocket", "server", "markdown", "highlight"]
license = "AGPL-3.0-only"
categories = ["web-programming::http-server"]
[lints.clippy]
large_enum_variant = "allow"
mutable_key_type = "allow"
[dependencies]
rocket = "0.5"
rocket_dyn_templates = { version = "0.2", features = ["tera"] }
yansi = "1.0.0-rc"
rand = "0.8"
syntect = "5"
comrak = { version = "0.26", default-features = false }
futures = "0.3"
humantime = "2.1"
humantime-serde = "1.1"