upend/Cargo.toml

42 lines
912 B
TOML
Raw Normal View History

2020-08-27 00:11:50 +02:00
[package]
authors = ["Tomáš Mládek <t@mldk.cz>"]
edition = "2018"
2020-09-06 12:32:48 +02:00
name = "upend"
version = "0.1.0"
2020-08-27 00:11:50 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "2.33.0"
env_logger = "0.7.1"
2020-09-06 12:32:48 +02:00
log = "0.4"
2020-08-27 00:11:50 +02:00
anyhow = "1.0"
2020-09-07 21:21:54 +02:00
thiserror = "1.0"
2020-08-27 00:11:50 +02:00
diesel = { version = "1.4", features = ["sqlite", "r2d2", "chrono", "serde_json"] }
2020-09-06 12:32:17 +02:00
diesel_migrations = "1.4"
2020-08-27 00:11:50 +02:00
actix = "0.9.0"
actix-files = "0.2.2"
actix-rt = "1.0.0"
2020-09-06 12:32:48 +02:00
actix-web = "2.0"
2020-08-27 00:11:50 +02:00
actix_derive = "0.3.2"
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
2020-09-07 21:21:54 +02:00
serde_json = "1.0"
2020-09-20 19:28:44 +02:00
rayon = "1.4.0"
2020-09-06 12:32:48 +02:00
bs58 = "0.3.1"
2020-08-27 00:11:50 +02:00
filebuffer = "0.4.0"
tiny-keccak = { version = "2.0", features = ["k12"] }
unsigned-varint = { version = "0.5.0", features = ["std"] }
uuid = { version = "0.8", features = ["v4"] }
2020-08-27 00:11:50 +02:00
walkdir = "2"
dotenv = "0.15.0"
webbrowser = "0.5.5"
2020-09-06 12:32:48 +02:00
xdg = "^2.1"