You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.2 KiB

4 years ago
[package]
name = "rae"
version = "0.1.0"
authors = ["Avril <flanchan@cumallover.me>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["short-ids"]
4 years ago
# Enforce password rules, compiled in from file defined at `config/password.toml`
password-rules = []
# Use short IDs for keys
short-ids = ["base65536"]
4 years ago
# Use local time for timestamps (unstable)
local-time = []
4 years ago
[dependencies]
color-eyre = "0.5.3"
4 years ago
lazy_static = "1.4.0"
4 years ago
crypto = {package= "cryptohelpers", version = "1.5.1", features=["full", "async", "serialise"]}
4 years ago
cfg-if = "0.1.10"
tokio = {version = "0.2", features=["full"]}
serde = {version ="1.0.116", features=["derive"]}
tracing = "0.1.19"
tracing-subscriber = "0.2.12"
tracing-futures = "0.2.4"
tracing-error = "0.1.2"
smallmap = "1.1.2"
recolored = "1.9.3"
libc = "0.2.77"
base65536 = { version = "1.0.0", optional = true }
serde_cbor = "0.11.1"
futures = "0.3.5"
chrono = "0.4.15"
pin-project = "0.4.23"
base64 = "0.12.3"
4 years ago
hex = "0.4.2"
async-trait = "0.1.40"
hex-literal = "0.3.1"
4 years ago
once_cell = "1.4.1"
4 years ago
getrandom = "0.2.0"
4 years ago
rpassword = "5.0.0"
4 years ago
[build-dependencies]
rustc_version = "0.2"
4 years ago
config_struct = "0.5.0"