flodgatt/Cargo.toml

32 lines
659 B
TOML
Raw Normal View History

2019-02-11 09:45:14 +01:00
[package]
name = "ragequit"
2019-02-11 18:58:51 +01:00
description = "A blazingly fast drop-in replacement for the Mastodon streaming api server"
2019-02-11 09:45:14 +01:00
version = "0.1.0"
authors = ["Julian Laubstein <contact@julianlaubstein.de>"]
edition = "2018"
[dependencies]
actix-web = "0.7.18"
structopt = "0.2.14"
log = "0.4.6"
2019-02-11 21:00:07 +01:00
actix = "0.7.9"
2019-02-15 10:22:35 +01:00
actix-redis = "0.5.1"
redis-async = "0.4.4"
uuid = "0.7.2"
2019-02-19 20:29:32 +01:00
envconfig = "0.5.0"
envconfig_derive = "0.5.0"
whoami = "0.4.1"
futures = "0.1.26"
tokio = "0.1.18"
warp = "0.1.15"
regex = "1.1.5"
serde_json = "1.0.39"
serde_derive = "1.0.90"
serde = "1.0.90"
pretty_env_logger = "0.3.0"
2019-04-18 21:47:08 +02:00
postgres = "0.15.2"
2019-02-19 20:29:32 +01:00
[features]
default = [ "production" ]
production = []