trifid/trifid-pki/Cargo.toml

22 lines
636 B
TOML
Raw Normal View History

2023-02-26 04:16:30 +00:00
[package]
name = "trifid-pki"
version = "0.1.5"
2023-02-26 04:16:30 +00:00
edition = "2021"
description = "A rust implementation of the Nebula PKI system"
2023-02-28 01:50:31 +00:00
license = "AGPL-3.0-or-later"
2023-02-28 00:07:47 +00:00
documentation = "https://docs.rs/trifid-pki"
homepage = "https://git.e3t.cc/~core/trifid"
repository = "https://git.e3t.cc/~core/trifid"
2023-02-26 04:16:30 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-02-27 02:58:45 +00:00
pem = "1.1.1"
x25519-dalek = "2.0.0-pre.1"
2023-02-27 15:55:53 +00:00
ed25519-dalek = { version = "2.0.0-pre.0", features = ["rand_core", "alloc"] }
2023-02-27 02:58:45 +00:00
ipnet = "2.7.1"
quick-protobuf = "0.8.1"
hex = "0.4.3"
2023-02-27 15:55:53 +00:00
sha2 = "0.10.6"
rand_core = "0.6.4"
rand = "0.8.5"