|
|
|
[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"]
|
|
|
|
|
|
|
|
# Enforce password rules, compiled in from file defined at `config/password.toml`
|
|
|
|
password-rules = []
|
|
|
|
# Use short IDs for keys
|
|
|
|
short-ids = ["base65536"]
|
|
|
|
# Use local time for timestamps (unstable)
|
|
|
|
local-time = []
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
color-eyre = "0.5.3"
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
crypto = {package= "cryptohelpers", version = "1.5.1", features=["full", "async", "serialise"]}
|
|
|
|
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"
|
|
|
|
hex = "0.4.2"
|
|
|
|
async-trait = "0.1.40"
|
|
|
|
hex-literal = "0.3.1"
|
|
|
|
once_cell = "1.4.1"
|
|
|
|
getrandom = "0.2.0"
|
|
|
|
rpassword = "5.0.0"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
rustc_version = "0.2"
|
|
|
|
config_struct = "0.5.0"
|