2019-02-11 09:45:14 +01:00
|
|
|
[package]
|
2019-09-09 19:06:24 +02:00
|
|
|
name = "flodgatt"
|
2019-02-11 18:58:51 +01:00
|
|
|
description = "A blazingly fast drop-in replacement for the Mastodon streaming api server"
|
2019-09-11 06:13:45 +02:00
|
|
|
version = "0.3.1"
|
2019-05-10 12:23:07 +02:00
|
|
|
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"
|
2019-04-15 20:48:09 +02:00
|
|
|
futures = "0.1.26"
|
2019-04-28 23:28:57 +02:00
|
|
|
tokio = "0.1.19"
|
2019-04-15 20:48:09 +02:00
|
|
|
warp = "0.1.15"
|
|
|
|
regex = "1.1.5"
|
|
|
|
serde_json = "1.0.39"
|
|
|
|
serde_derive = "1.0.90"
|
|
|
|
serde = "1.0.90"
|
2019-04-18 16:10:01 +02:00
|
|
|
pretty_env_logger = "0.3.0"
|
2019-09-05 03:31:52 +02:00
|
|
|
postgres = { git = "https://github.com/sfackler/rust-postgres.git" }
|
2019-04-28 23:28:57 +02:00
|
|
|
uuid = { version = "0.7", features = ["v4"] }
|
2019-05-10 12:23:07 +02:00
|
|
|
dotenv = "0.14.0"
|
2019-07-08 21:21:02 +02:00
|
|
|
lazy_static = "1.3.0"
|
2019-09-05 03:31:52 +02:00
|
|
|
postgres-openssl = { git = "https://github.com/sfackler/rust-postgres.git"}
|
2019-02-19 20:29:32 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = [ "production" ]
|
|
|
|
production = []
|