broker/Cargo.toml

41 lines
1017 B
TOML
Raw Normal View History

2020-01-24 16:17:20 +00:00
[package]
name = "broker"
2021-05-01 00:57:04 +00:00
version = "15.1.0"
2020-01-24 16:17:20 +00:00
authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
edition = "2018"
license = "MIT"
2021-04-11 02:22:30 +00:00
keywords = ["sse", "identity", "baas", "broker", "real-time"]
2020-02-03 17:04:07 +00:00
description = "Real-time BaaS (Backend as a Service)"
2020-01-24 16:17:20 +00:00
repository = "https://github.com/apibillme/broker"
2021-03-20 21:44:06 +00:00
categories = ["web-programming::http-server", "database-implementations", "authentication"]
2020-01-24 16:17:20 +00:00
readme = "README.md"
[dependencies]
serde_json = "1"
2021-04-09 07:01:39 +00:00
tide = "0.16"
2021-03-20 09:25:29 +00:00
async-std = { version = "1.9", features = ["attributes"] }
serde = { version = "1", features = ["derive"] }
2020-01-24 16:17:20 +00:00
serde_derive = "1"
json = "0.12"
2021-03-20 09:25:29 +00:00
rocksdb = "0.15"
2020-01-24 16:17:20 +00:00
uuid = { version = "0.8", features = ["serde", "v4"] }
2021-04-05 19:11:07 +00:00
jsonwebtoken = "7"
2020-01-24 16:17:20 +00:00
go-flag = "0.1"
lazy_static = "1.4"
2021-03-22 05:07:26 +00:00
nippy = "2"
2021-03-20 09:25:29 +00:00
rust-argon2 = "0.8"
anyhow = "1"
rmp-serde = "0.15"
driftwood = "0.0.6"
http-types = "2"
2021-03-22 22:15:22 +00:00
tide-rustls = "0.3"
2021-03-20 09:25:29 +00:00
futures = "0.3"
2021-03-22 22:15:22 +00:00
tide-acme = "0.1.0"
2021-03-25 20:19:27 +00:00
base64 = "0.13"
2021-04-05 21:30:22 +00:00
mailchecker = "4"
2021-04-07 03:21:05 +00:00
zxcvbn = "2"
2021-04-09 07:01:39 +00:00
totp-rs = { version = "0.6", features = ["qr"] }
chbs = "0.1"
2021-04-13 00:26:29 +00:00
biscuit-auth = "1"
regex = "1"