pastebin/Cargo.toml

22 lines
451 B
TOML
Raw Normal View History

2020-05-09 00:10:11 +02:00
[package]
name = "pastebin"
2020-10-27 14:25:08 +01:00
version = "0.1.3"
2020-05-09 00:10:11 +02:00
authors = ["Kaczanowski Mateusz <kaczanowski.mateusz@gmail.com>"]
edition = "2018"
[dependencies]
rocket = { version = "0.4.4", features = ["tls"] }
2020-09-21 11:57:52 +02:00
regex = "1"
2020-09-23 02:36:52 +02:00
humantime = "2.0.1"
2020-05-09 00:10:11 +02:00
rocksdb = "0.13.0"
nanoid = "0.3.0"
flatbuffers = "0.6.1"
2020-09-18 23:52:09 +02:00
structopt = "0.3.17"
structopt-derive = "0.4.10"
2020-05-09 00:10:11 +02:00
num_cpus = "1.0"
handlebars = "3.5.3"
2020-05-09 00:10:11 +02:00
tempdir = "0.3.7"
speculate = "0.1.2"
chrono = "0.4.11"
2020-09-23 02:36:52 +02:00
serde_json = "1.0.57"