Files
Alfis/Cargo.toml
T

88 lines
2.3 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"
2022-05-12 15:17:25 +02:00
log = "0.4.17"
simplelog = "0.12.0"
2023-03-01 13:18:18 +01:00
toml = "0.7.2"
2022-11-03 13:56:17 +01:00
digest = "0.10.5"
sha2 = "0.10.6"
ed25519-dalek = "1.0"
x25519-dalek = "1.2"
ecies-ed25519 = "0.5"
chacha20poly1305 = "0.9.1"
2023-03-01 13:18:18 +01:00
signature = "2.0.0"
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"
2023-03-01 13:18:18 +01:00
base64 = "0.21.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"
2023-03-01 13:57:08 +01:00
rand = { package = "rand", version = "0.8.5" }
2021-03-24 19:06:22 +01:00
rand-old = { package = "rand", version = "0.7.0" } # For ed25519-dalek
2023-03-01 13:57:08 +01:00
sqlite = "0.30.4"
2023-03-01 13:18:18 +01:00
uuid = { version = "1.3.0", features = ["serde", "v4"] }
mio = { version = "0.8.5", features = ["os-poll", "net"] }
ureq = { version = "2.5", optional = true }
2023-03-01 13:18:18 +01:00
lru = "0.9.0"
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"
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 }
2022-11-03 13:56:17 +01:00
open = { version = "3.0.3", optional = true }
[target.'cfg(windows)'.dependencies]
2021-05-18 11:31:49 +02:00
winapi = { version = "0.3.9", features = ["impl-default", "wincon", "shellscalingapi"] }
2023-06-08 00:07:15 +02:00
windows-service = "0.6.0"
thread-priority = "0.10.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 = "0.10.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"]