2019-12-01 21:45:25 +00:00
|
|
|
[package]
|
2020-04-18 19:31:40 +00:00
|
|
|
name = "alfis"
|
2021-03-10 21:21:50 +00:00
|
|
|
version = "0.3.0"
|
2021-02-19 21:04:58 +00:00
|
|
|
authors = ["Revertron <alfis@revertron.com>"]
|
2019-12-01 21:45:25 +00:00
|
|
|
edition = "2018"
|
2021-01-17 23:18:35 +00:00
|
|
|
build = "build.rs"
|
2021-02-19 21:04:58 +00:00
|
|
|
readme = "README.md"
|
2021-02-19 15:41:43 +00:00
|
|
|
homepage = "https://alfis.name"
|
|
|
|
repository = "https://github.com/Revertron/Alfis"
|
2019-12-01 21:45:25 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-02-19 15:41:43 +00:00
|
|
|
getopts = "0.2.21"
|
2021-02-20 15:28:10 +00:00
|
|
|
log = "0.4.14"
|
|
|
|
simple_logger = "1.11.0"
|
2021-03-13 20:04:40 +00:00
|
|
|
toml = "0.5.8"
|
2019-12-01 21:45:25 +00:00
|
|
|
rust-crypto = "^0.2"
|
2021-03-10 21:21:50 +00:00
|
|
|
blakeout = "0.1.0"
|
2021-01-14 17:34:43 +00:00
|
|
|
num_cpus = "1.13.0"
|
2019-12-01 21:45:25 +00:00
|
|
|
byteorder = "1.3.2"
|
2021-01-17 23:18:35 +00:00
|
|
|
web-view = { version = "0.7.2", features = [] }
|
2021-02-15 22:09:30 +00:00
|
|
|
tinyfiledialogs = "3.3.10"
|
2021-02-16 21:06:03 +00:00
|
|
|
serde = { version = "1.0.123", features = ["derive"] }
|
2019-12-01 21:45:25 +00:00
|
|
|
serde_json = "1.0.42"
|
|
|
|
num-bigint = "0.2"
|
|
|
|
num-traits = "0.2"
|
|
|
|
bincode = "1.2.0"
|
|
|
|
base64 = "0.11.0"
|
2021-02-17 15:59:40 +00:00
|
|
|
chrono = { version = "0.4.13", features = ["serde"] }
|
2021-03-13 20:04:40 +00:00
|
|
|
rand = "0.8.3"
|
2021-01-20 18:23:41 +00:00
|
|
|
sqlite = "0.25.3"
|
2021-01-30 13:18:37 +00:00
|
|
|
uuid = { version = "0.8.2", features = ["serde", "v4"] }
|
2021-02-05 21:24:28 +00:00
|
|
|
mio = { version = "0.7", features = ["os-poll", "net"] }
|
2021-02-17 15:59:40 +00:00
|
|
|
# for DNS from hermes
|
|
|
|
derive_more = "0.99.9"
|
2021-01-17 23:18:35 +00:00
|
|
|
|
2021-02-19 21:04:58 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2021-03-06 23:27:50 +00:00
|
|
|
thread-priority = "0.2.1"
|
2021-02-19 21:04:58 +00:00
|
|
|
winapi = { version = "0.3.7", features = ["impl-default", "wincon"]}
|
|
|
|
|
2021-03-07 00:17:10 +00:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2021-03-06 23:17:03 +00:00
|
|
|
thread-priority = "0.2.1"
|
|
|
|
|
2021-01-17 23:18:35 +00:00
|
|
|
[build-dependencies]
|
2021-03-11 00:41:19 +00:00
|
|
|
minreq = { version = "2.3.1", features = ["punycode", "https-rustls"] }
|
|
|
|
rust-crypto = "^0.2"
|
2021-01-17 23:18:35 +00:00
|
|
|
winres = "0.1"
|
2019-12-01 21:45:25 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serde_bytes = "0.11.2"
|
2021-01-17 23:18:35 +00:00
|
|
|
serde_derive = "1.0.27"
|
|
|
|
|
|
|
|
[package.metadata.winres]
|
|
|
|
ProductName="ALFIS"
|
2021-02-19 15:41:43 +00:00
|
|
|
FileDescription="Alternative Free Identity System"
|