upend/Cargo.toml

48 lines
1.0 KiB
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"
2021-02-19 22:45:56 +01:00
version = "0.0.1"
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"
2021-02-18 20:48:31 +01:00
env_logger = "^0.8"
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
rayon = "1.4.0"
2021-02-19 21:58:35 +01:00
futures-util = "~0.3.12"
diesel = { version = "1.4", features = ["sqlite", "r2d2", "chrono", "serde_json"] }
2020-09-06 12:32:17 +02:00
diesel_migrations = "1.4"
libsqlite3-sys = { version = "^0", features = ["bundled"] }
2020-09-06 12:32:17 +02:00
2021-02-18 20:48:31 +01:00
actix = "^0.10"
actix-files = "^0.5"
actix-rt = "^2.0"
actix-web = "^3.3"
actix_derive = "^0.5"
2020-08-27 00:11:50 +02:00
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
2020-09-07 21:21:54 +02:00
serde_json = "1.0"
lexpr = "0.2.6"
2021-02-18 20:48:31 +01:00
bs58 = "^0.4"
2020-08-27 00:11:50 +02:00
filebuffer = "0.4.0"
tiny-keccak = { version = "2.0", features = ["k12"] }
2021-02-18 20:48:31 +01:00
unsigned-varint = { version = "^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"
nonempty = "0.6.0"