Files
Alfis/Cargo.toml
T

85 lines
2.2 KiB
TOML
Raw Normal View History

2019-12-01 22:45:25 +01:00
[package]
name = "alfis"
2022-09-06 20:31:01 +02:00
version = "0.8.2"
authors = ["Revertron <alfis@revertron.com>"]
edition = "2021"
build = "build.rs"
readme = "README.md"
homepage = "https://alfis.name"
repository = "https://github.com/Revertron/Alfis"
exclude = ["blockchain.db", "alfis.toml"]
2019-12-01 22:45:25 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
getopts = "0.2.21"
2022-05-12 15:17:25 +02:00
log = "0.4.17"
simplelog = "0.12.0"
toml = "0.5.9"
2022-02-16 21:28:30 +01:00
digest = "0.10.2"
2022-09-05 20:22:28 +02:00
sha2 = "0.10.5"
ed25519-dalek = "1.0"
x25519-dalek = "1.2"
ecies-ed25519 = "0.5"
chacha20poly1305 = "0.9.1"
2022-09-05 20:22:28 +02:00
signature = "1.6"
blakeout = "0.3.0"
num_cpus = "1.13.1"
2021-03-20 18:13:35 +01:00
byteorder = "1.4.3"
2022-09-05 19:19:19 +02:00
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.85"
2021-05-18 11:31:49 +02:00
bincode = "1.3.3"
2021-08-23 10:32:10 +00:00
serde_cbor = "0.11.2"
2021-05-18 11:31:49 +02:00
base64 = "0.13.0"
2021-11-08 03:04:34 +00:00
num-bigint = "0.4.3"
2022-05-12 15:17:25 +02:00
num-traits = "0.2.15"
2022-09-05 19:19:19 +02:00
chrono = { version = "0.4.20", features = ["serde"] }
2022-09-05 20:22:28 +02:00
time = "0.3.14"
2022-02-16 21:28:30 +01:00
rand = { version = "0.8.5", package = "rand" }
2021-03-24 19:06:22 +01:00
rand-old = { package = "rand", version = "0.7.0" } # For ed25519-dalek
sqlite = "0.26.0"
uuid = { version = "1.1.2", features = ["serde", "v4"] }
mio = { version = "0.8.4", features = ["os-poll", "net"] }
ureq = { version = "2.5", optional = true }
lru = "0.7.8"
2021-11-29 03:05:39 +00:00
derive_more = "0.99.17"
2021-05-10 00:49:01 +02:00
lazy_static = "1.4.0"
# Optional dependencies regulated by features
2021-05-18 11:31:49 +02:00
web-view = { version = "0.7.3", features = [], optional = true }
tinyfiledialogs = { version = "3.9.1", optional = true }
open = { version = "3.0.2", optional = true }
[target.'cfg(windows)'.dependencies]
2021-05-18 11:31:49 +02:00
winapi = { version = "0.3.9", features = ["impl-default", "wincon", "shellscalingapi"] }
2022-09-05 20:22:28 +02:00
thread-priority = "0.9.2"
2022-04-12 23:51:00 +03:00
[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
2022-09-05 20:22:28 +02:00
thread-priority = "0.9.2"
2022-04-09 14:37:05 +03:00
[build-dependencies]
2021-10-04 03:03:50 +00:00
winres = "0.1.12"
2019-12-01 22:45:25 +01:00
[dev-dependencies]
2022-09-05 19:19:19 +02:00
serde_bytes = "0.11.7"
2021-05-18 11:31:49 +02:00
serde_derive = "1.0.126"
[profile.release]
opt-level = 3
lto = true
[profile.dev]
opt-level = 2
[profile.test]
opt-level = 2
[package.metadata.winres]
ProductName="ALFIS"
FileDescription="Alternative Free Identity System"
[features]
2021-04-06 12:08:50 +02:00
webgui = ["web-view", "tinyfiledialogs", "open"]
2021-05-07 11:28:24 +02:00
edge = ["webgui", "web-view/edge"]
doh = ["ureq"]
2022-04-09 14:37:05 +03:00
default = ["webgui", "doh"]