Files

79 lines
2.3 KiB
TOML
Raw Permalink Normal View History

2019-12-01 22:45:25 +01:00
[package]
name = "alfis"
2024-11-18 00:44:04 +01:00
version = "0.8.6"
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"
2024-11-17 13:39:23 +01:00
toml = "0.8.19"
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"
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"
num-bigint = "0.4.6"
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"
2024-11-17 13:39:23 +01:00
uuid = { version = "1.11.0", features = ["serde", "v4"] }
mio = { version = "1.0.0", features = ["os-poll", "net"] }
2024-11-17 13:39:23 +01:00
ureq = { version = "2.10", optional = true }
2024-01-11 01:49:06 +01:00
lru = "0.12"
2024-11-17 13:39:23 +01:00
derive_more = { version = "1.0.0", features = ["display", "error", "from"] }
lazy_static = "1.5.0"
2022-11-03 14:46:35 +01:00
spmc = "0.3.0"
2024-11-17 13:39:23 +01:00
thread-priority = "1.2.0"
# Optional dependencies regulated by features
2025-09-30 23:51:12 +03:00
# web-view = { git = "https://github.com/Boscop/web-view", features = [], optional = true }
gtk = { package = "gtk4", version = "0.9.6", features = ["v4_16"], optional = true }
adw = { version = "0.7.2", package = "libadwaita", features = ["v1_5"], optional = true }
tinyfiledialogs = { version = "3.9.1", optional = true }
2024-11-17 13:39:23 +01:00
open = { version = "5.3.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"
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
[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]
2025-09-30 23:51:12 +03:00
gui = ["gtk", "adw"]
# webgui = ["web-view", "tinyfiledialogs", "open"]
# edge = ["webgui", "web-view/edge"]
doh = ["ureq"]
2025-09-30 23:51:12 +03:00
default = ["gui", "doh"]