Files
Alfis/Cargo.toml
T

82 lines
2.0 KiB
TOML
Raw Normal View History

2019-12-01 22:45:25 +01:00
[package]
name = "alfis"
version = "0.6.7"
authors = ["Revertron <alfis@revertron.com>"]
2019-12-01 22:45:25 +01:00
edition = "2018"
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"
2021-02-20 16:28:10 +01:00
log = "0.4.14"
2021-05-18 11:31:49 +02:00
simplelog = "0.10.0"
toml = "0.5.8"
digest = "0.9.0"
2021-09-13 03:04:35 +00:00
sha2 = "0.9.8"
2021-05-18 11:31:49 +02:00
ed25519-dalek = "1.0.1"
2021-05-30 00:33:13 +02:00
x25519-dalek = "1.1.1"
2021-05-18 11:31:49 +02:00
ecies-ed25519 = "0.5.1"
2021-08-30 03:04:15 +00:00
chacha20poly1305 = "0.9.0"
2021-07-05 03:04:15 +00:00
signature = "1.3.1"
blakeout = "0.3.0"
2021-01-14 18:34:43 +01:00
num_cpus = "1.13.0"
2021-03-20 18:13:35 +01:00
byteorder = "1.4.3"
2021-08-30 07:26:55 +00:00
serde = { version = "1.0.130", features = ["derive"] }
2021-08-30 03:04:10 +00:00
serde_json = "1.0.67"
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-09-13 03:04:41 +00:00
num-bigint = "0.4.2"
2021-03-20 18:13:35 +01:00
num-traits = "0.2.14"
2021-05-18 11:31:49 +02:00
chrono = { version = "0.4.19", features = ["serde"] }
2021-06-21 03:04:18 +00:00
rand = { version = "0.8.4", 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 = "0.8.2", features = ["serde", "v4"] }
2021-06-21 03:04:09 +00:00
mio = { version = "0.7.13", features = ["os-poll", "net"] }
ureq = "2.2"
lru = "0.6"
2021-07-12 03:04:34 +00:00
derive_more = "0.99.16"
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 }
2021-05-31 06:39:37 +00:00
tinyfiledialogs = { version = "3.8.3", optional = true }
2021-08-16 03:04:07 +00:00
open = { version = "2.0.1", optional = true }
[target.'cfg(windows)'.dependencies]
2021-05-18 11:31:49 +02:00
winapi = { version = "0.3.9", features = ["impl-default", "wincon", "shellscalingapi"] }
2021-06-07 06:36:57 +00:00
thread-priority = "0.2.4"
[target.'cfg(target_os = "linux")'.dependencies]
2021-06-07 06:36:57 +00:00
thread-priority = "0.2.4"
[build-dependencies]
2021-05-18 11:31:49 +02:00
winres = "0.1.11"
2019-12-01 22:45:25 +01:00
[dev-dependencies]
serde_bytes = "0.11.5"
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"]
default = ["webgui"]