bffh/Cargo.toml

131 lines
3.0 KiB
TOML
Raw Normal View History

2020-02-14 12:20:17 +01:00
[package]
name = "difluoroborane"
version = "0.4.4"
authors = [ "Jonathan Krebs <jonathan.krebs@bruckbu.de>"
, "dequbed <me@dequbed.space>"
, "Kai Jan Kriegel <kai@kjkriegel.de>"
, "Joseph Langosch <thejoklla@gmail.com>"
, "Jannis Rieger <omniskopus@gmail.com>"
]
2022-03-07 18:27:54 +01:00
license = "GPL-3.0"
2021-10-27 23:20:35 +02:00
edition = "2021"
2021-10-27 23:40:29 +02:00
publish = false
readme = "README.md"
build = "build.rs"
2020-02-14 12:20:17 +01:00
2021-10-27 17:03:34 +02:00
[profile.release]
opt-level = 3
debug = true
lto = "thin"
2020-10-26 12:58:55 +01:00
2021-10-27 23:20:35 +02:00
[lib]
path = "bffhd/lib.rs"
# Don't run unit tests on `cargo test --tests`, only run integration tests.
test = false
2021-10-27 23:20:35 +02:00
[[bin]]
name = "bffhd"
path = "bin/bffhd/main.rs"
# Don't run unit tests on `cargo test --tests`, only run integration tests.
test = false
2021-10-27 23:20:35 +02:00
2020-02-14 12:20:17 +01:00
[dependencies]
libc = "0.2.169"
nix = "0.29.0"
uuid = { version = "1.13.1", features = ["serde", "v4"] }
async-trait = "0.1.86"
pin-utils = "0.1.0"
futures-util = "0.3.31"
futures-lite = "2.6.0"
async-net = "2.0.0"
async-io = "2.4.0"
async-process = "2.3.0"
backtrace = "0.3.74"
base64 = "0.22.1"
miette = { version = "7.5.0", features = ["fancy"] }
thiserror = "2.0.11"
toml = "0.5.11"
2022-03-15 16:27:41 +01:00
# Well-known paths/dirs for e.g. cache
dirs = "6.0.0"
2022-03-15 16:27:41 +01:00
2021-10-27 17:03:50 +02:00
# Runtime
executor = { path = "runtime/executor" }
2022-07-24 16:07:49 +02:00
lightproc = { path = "runtime/lightproc" }
2022-06-21 22:23:55 +02:00
console = { path = "runtime/console" }
2021-10-27 17:03:50 +02:00
2021-10-27 14:49:45 +02:00
# Catch&Handle POSIX process signals
signal-hook = "0.3.17"
signal-hook-async-std = "0.2.2"
2020-02-18 13:06:25 +01:00
2021-10-27 14:49:45 +02:00
# Argument parsing for bin/bffhd.rs
clap = { version = "3.2.22", features = ["cargo"] }
2020-02-14 12:20:17 +01:00
2021-10-27 14:49:45 +02:00
# Internal Databases
lmdb-rkv = "0.14.0"
rkyv = { version = "0.7.45", features = [] }
ptr_meta = "0.1.4"
rkyv_typename = "0.7.44"
rkyv_dyn = "0.7.44"
inventory = "0.3.19"
linkme = "0.3.31"
chrono = { version = "0.4.39", features = ["serde"] }
2021-10-27 14:49:45 +02:00
# Password hashing for internal users
rust-argon2 = "2.1.0"
2021-10-27 14:49:45 +02:00
rand = "0.8.4"
2020-09-15 14:31:10 +02:00
2021-10-27 14:49:45 +02:00
# Async aware logging and tracing
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "registry", "std"] }
tracing-futures = { version = "0.2.5", features = ["futures-03"] }
2020-02-17 14:56:43 +01:00
2021-10-27 14:49:45 +02:00
# API
2021-10-28 00:32:25 +02:00
api = { path = "api" }
capnp = "0.16.1"
capnp-rpc = "0.16.2"
2020-02-18 13:06:25 +01:00
2021-10-27 14:49:45 +02:00
# API Authentication
2022-11-02 15:01:44 +01:00
desfire = "0.2.0-alpha3"
2022-11-01 10:47:51 +01:00
2022-03-16 19:29:36 +01:00
hex = { version = "0.4.3", features = ["serde"] }
2020-04-28 16:51:08 +02:00
futures-signals = "0.3.34"
async-oneshot = "0.5.9"
async-channel = "2.3.1"
2021-10-27 14:49:45 +02:00
# Config and Database (De)Serialization
serde = { version = "1.0.217", features = ["derive"] }
erased-serde = "0.4.5"
serde_dhall = { version = "0.12.1", default-features = false }
serde_json = "1.0.138"
2020-11-24 14:16:22 +01:00
once_cell = "1.20.3"
lazy_static = "1.5.0"
2021-11-26 21:01:43 +01:00
rustls = "0.20.9"
rustls-pemfile = "1.0.4"
futures-rustls = "0.22.2"
2021-11-26 21:01:43 +01:00
2022-03-13 21:30:26 +01:00
rumqttc = "0.11.0"
async-compat = "0.2.4"
url = "2.5.4"
rustls-native-certs = "0.6.3"
2022-03-13 21:30:26 +01:00
shadow-rs = "0.38.1"
2022-05-18 17:01:03 +02:00
2022-04-27 17:21:07 +02:00
[dependencies.rsasl]
version = "2.2.0"
2025-03-07 01:13:39 +01:00
default-features = false
2022-11-01 10:47:51 +01:00
features = ["unstable_custom_mechanism", "provider", "registry_static", "config_builder", "plain"]
2022-04-27 17:21:07 +02:00
2020-12-01 16:06:39 +01:00
[dev-dependencies]
futures-test = "0.3.31"
tempfile = "3.16"
2021-10-27 23:20:35 +02:00
2022-05-18 17:01:03 +02:00
[build-dependencies]
shadow-rs = "0.38.1"
2022-05-18 17:01:03 +02:00
2021-10-27 23:20:35 +02:00
[workspace]
members = ["runtime/*", "modules/*", "api", "fabfire_provision"]