fabaccess-bffh/Cargo.toml

80 lines
1.8 KiB
TOML
Raw Normal View History

2020-02-14 12:20:17 +01:00
[package]
2020-02-18 16:55:19 +01:00
name = "diflouroborane"
2021-02-23 11:43:03 +01:00
version = "0.2.0"
authors = [ "Gregor Reitzenstein <me@dequbed.space>"
, "Kai Jan Kriegel <kai@kjkriegel.de>"
, "Joseph Langosch <thejoklla@gmail.com>"
, "Jannis Rieger <omniskopus@gmail.com>"
]
2020-02-19 14:50:36 +01:00
license = "GPL-3.0"
2020-02-14 12:20:17 +01:00
edition = "2018"
2020-10-26 12:58:55 +01:00
[features]
default = ["lmdb"]
# Use LMDB for internal kv-stores
lmdb = []
2020-02-14 12:20:17 +01:00
[dependencies]
2021-08-29 10:17:55 +02:00
futures = { version = "0.3.16", features = ["thread-pool", "compat"] }
futures-util = "0.3.16"
futures-signals = "0.3.22"
2020-02-14 12:20:17 +01:00
2021-08-29 10:17:55 +02:00
smol = "1.2.5"
2020-05-11 18:21:45 +02:00
2021-08-29 10:17:55 +02:00
signal-hook = "0.3.9"
2020-02-18 13:06:25 +01:00
2021-08-29 10:17:55 +02:00
slog = { version = "2.7.0", features = ["max_level_trace"] }
slog-term = "2.8.0"
slog-async = "2.7.0"
2020-02-14 12:20:17 +01:00
2021-08-29 10:17:55 +02:00
capnp = "0.14.3"
capnp-rpc = "0.14.1"
capnp-futures = "0.14.1"
2020-02-14 12:20:17 +01:00
2021-08-29 10:17:55 +02:00
serde = { version = "1.0.130", features = ["derive"] }
toml = "0.5.8"
flexbuffers = "2.0.0"
2021-09-10 16:22:58 +02:00
bincode = "2.0.0-dev"
2020-02-14 12:20:17 +01:00
2021-08-29 10:17:55 +02:00
serde_dhall = { version = "0.10.1", default-features = false }
2020-09-15 14:31:10 +02:00
2021-08-29 10:17:55 +02:00
uuid = { version = "0.8.2", features = ["serde", "v4"] }
2020-02-17 14:56:43 +01:00
2021-08-29 10:17:55 +02:00
clap = "2.33.3"
2020-02-18 13:06:25 +01:00
# TODO update this if bindgen breaks (again)
2021-09-09 21:50:11 +02:00
rsasl = "1.4.0"
2020-11-10 13:34:09 +01:00
#rsasl = { path = "../../rsasl" }
2020-04-28 16:51:08 +02:00
2020-09-14 10:37:51 +02:00
# rumqtt needs tokio which I'm trying to get away from
paho-mqtt = { git = "https://github.com/dequbed/paho.mqtt.rust.git", branch = "master", features = ["build_bindgen"] }
2020-09-14 10:37:51 +02:00
#mlua = { version = "0.4", features = ["async", "luajit"] }
2020-09-14 10:37:51 +02:00
2021-08-29 10:17:55 +02:00
libc = "0.2.101"
lmdb-rkv = "0.14.0"
2020-09-14 10:37:51 +02:00
2021-08-29 10:17:55 +02:00
async-trait = "0.1.51"
2020-11-24 14:16:22 +01:00
lazy_static = "1.4.0"
2021-08-29 10:17:55 +02:00
rust-argon2 = "0.8.3"
rand = "0.8.4"
2020-11-24 14:16:22 +01:00
2021-08-29 10:17:55 +02:00
async-channel = "1.6.1"
easy-parallel = "3.1.0"
genawaiter = "0.99.1"
2020-12-01 10:21:39 +01:00
2020-02-14 12:20:17 +01:00
[build-dependencies]
2021-08-29 10:17:55 +02:00
capnpc = "0.14.4"
2021-08-29 10:09:41 +02:00
# Used in build.rs to iterate over all files in schema/
2021-08-29 10:17:55 +02:00
walkdir = "2.3.2"
2020-12-01 16:06:39 +01:00
[dev-dependencies]
2021-08-29 10:17:55 +02:00
futures-test = "0.3.16"
2021-09-10 16:22:58 +02:00
tempfile = "3.2"
[patch.crates-io]
bincode = { git = "https://github.com/dequbed/bincode.git", branch = "feature/in_place_buffer" }