flodgatt/Cargo.toml

42 lines
1.0 KiB
TOML
Raw Normal View History

2019-02-11 09:45:14 +01:00
[package]
name = "flodgatt"
2019-02-11 18:58:51 +01:00
description = "A blazingly fast drop-in replacement for the Mastodon streaming api server"
version = "0.6.8"
authors = ["Daniel Long Sockwell <daniel@codesections.com", "Julian Laubstein <contact@julianlaubstein.de>"]
2019-02-11 09:45:14 +01:00
edition = "2018"
[dependencies]
log = { version = "0.4.6", features = ["release_max_level_info"] }
futures = "0.1.26"
tokio = "0.1.19"
warp = { git = "https://github.com/seanmonstar/warp.git"}
serde = { version = "1.0.105", features = ["derive"] }
serde_json = "1.0.50"
serde_derive = "1.0.90"
pretty_env_logger = "0.3.0"
postgres = "0.17.0"
uuid = { version = "0.7", features = ["v4"] }
dotenv = "0.14.0"
postgres-openssl = { git = "https://github.com/sfackler/rust-postgres.git"}
url = "2.1.0"
strum = "0.16.0"
strum_macros = "0.16.0"
r2d2_postgres = "0.16.0"
r2d2 = "0.8.8"
lru = "0.4.3"
2020-04-03 22:35:32 +02:00
urlencoding = "1.0.0"
2019-02-19 20:29:32 +01:00
2019-09-11 23:28:27 +02:00
[dev-dependencies]
criterion = "0.3"
regex = "1.3.2"
2019-09-11 23:28:27 +02:00
[[bench]]
name = "parse_redis"
harness = false
2019-02-19 20:29:32 +01:00
[features]
default = [ "production" ]
bench = []
2019-02-19 20:29:32 +01:00
production = []