fabaccess-bffh/Cargo.toml

47 lines
1.1 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"
2020-02-14 12:20:17 +01:00
version = "0.1.0"
authors = ["Gregor Reitzenstein <me@dequbed.space>"]
2020-02-19 14:50:36 +01:00
license = "GPL-3.0"
2020-02-14 12:20:17 +01:00
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-02-18 13:06:25 +01:00
futures = { version = "0.3", features = ["thread-pool", "compat"] }
2020-02-14 12:20:17 +01:00
futures-util = "0.3"
futures-signals = "0.3"
2020-09-08 09:56:40 +02:00
smol = "1.0"
2020-05-11 18:21:45 +02:00
2020-02-18 13:06:25 +01:00
signal-hook = { version = "0.1", features = ["tokio-support"] }
2020-02-17 21:07:50 +01:00
slog = { version = "2.5", features = ["max_level_trace"] }
2020-09-08 09:56:40 +02:00
slog-term = "2.6"
slog-async = "2.5"
2020-02-14 12:20:17 +01:00
2020-09-08 09:56:40 +02:00
capnp = "0.13"
capnp-rpc = "0.13"
capnp-futures = "0.13"
2020-02-14 12:20:17 +01:00
toml = "0.5"
serde = { version = "1.0", features = ["derive"] }
2020-09-14 10:37:51 +02:00
flexbuffers = "0.1"
2020-02-14 12:20:17 +01:00
2020-02-17 14:56:43 +01:00
uuid = { version = "0.8", features = ["serde", "v4"] }
2020-02-18 13:06:25 +01:00
clap = "2.33"
#rsasl = "0.1"
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
libc = "0.2"
lmdb-rkv = "0.14"
2020-02-14 12:20:17 +01:00
[build-dependencies]
2020-09-08 09:56:40 +02:00
capnpc = "0.13"