Files
Alfis/Cargo.toml
T

87 lines
2.4 KiB
TOML
Raw Normal View History

2019-12-01 22:45:25 +01:00
[package]
name = "alfis"
2023-06-08 00:07:15 +02:00
version = "0.8.5"
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"
log = "0.4.22"
simplelog = "0.12.2"
toml = "0.8.14"
digest = "0.10.7"
sha2 = "0.10.8"
ed25519-dalek = "2.1.1"
x25519-dalek = { version = "2.0.1", features = ["reusable_secrets"] }
ecies-ed25519-ng = { git = "https://github.com/Revertron/ecies-ed25519-ng", rev = "554ca29", version = "0.5.3" }
2024-01-11 01:32:18 +01:00
chacha20poly1305 = "0.10.1"
signature = "2.2.0"
blakeout = "0.3.0"
num_cpus = "1.16.0"
byteorder = "1.5.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
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"
base64 = "0.22.1"
num-bigint = "0.4.6"
num-traits = "0.2.19"
chrono = { version = "0.4.38", features = ["serde"] }
time = "0.3.36"
2023-03-01 13:57:08 +01:00
rand = { package = "rand", version = "0.8.5" }
sqlite = "0.36.0"
uuid = { version = "1.7.0", features = ["serde", "v4"] }
mio = { version = "1.0.0", features = ["os-poll", "net"] }
2024-01-11 01:32:18 +01:00
ureq = { version = "2.9", optional = true, git = "https://github.com/algesten/ureq" }
2024-01-11 01:49:06 +01:00
lru = "0.12"
derive_more = "0.99.18"
lazy_static = "1.5.0"
2022-11-03 14:46:35 +01:00
spmc = "0.3.0"
# Optional dependencies regulated by features
2023-03-01 13:57:08 +01:00
web-view = { git = "https://github.com/Boscop/web-view", features = [], optional = true }
tinyfiledialogs = { version = "3.9.1", optional = true }
open = { version = "5.2.0", optional = true }
[target.'cfg(windows)'.dependencies]
2021-05-18 11:31:49 +02:00
winapi = { version = "0.3.9", features = ["impl-default", "wincon", "shellscalingapi"] }
windows-service = "0.7.0"
thread-priority = "1.1.0"
2022-04-12 23:51:00 +03:00
[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
thread-priority = "1.1.0"
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
2022-09-11 11:43:01 +02:00
strip = true # Automatically strip symbols from the binary.
[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"]