flodgatt/Cargo.toml

38 lines
847 B
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"
2019-10-04 00:02:23 +02:00
version = "0.3.6"
authors = ["Daniel Long Sockwell <daniel@codesections.com", "Julian Laubstein <contact@julianlaubstein.de>"]
2019-02-11 09:45:14 +01:00
edition = "2018"
[dependencies]
log = "0.4.6"
futures = "0.1.26"
tokio = "0.1.19"
warp = "0.1.15"
serde_json = "1.0.39"
serde_derive = "1.0.90"
serde = "1.0.90"
pretty_env_logger = "0.3.0"
postgres = { git = "https://github.com/sfackler/rust-postgres.git" }
uuid = { version = "0.7", features = ["v4"] }
dotenv = "0.14.0"
postgres-openssl = { git = "https://github.com/sfackler/rust-postgres.git"}
url = "2.1.0"
2019-02-19 20:29:32 +01:00
2019-09-11 23:28:27 +02:00
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "parse_redis"
harness = false
[[bench]]
name = "read_time"
harness = false
2019-02-19 20:29:32 +01:00
[features]
default = [ "production" ]
production = []