Adding sub-project for CA support.

This commit is contained in:
Tim Bruijnzeels
2019-04-12 15:25:03 +02:00
parent c291119170
commit a2dbe5bb4e
4 changed files with 22 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
[workspace]
members = [ "client", "cms_proxy", "commons", "daemon", "pubc", "pubd" ]
members = [ "ca", "client", "cms_proxy", "commons", "daemon", "pubc", "pubd" ]
[patch.crates-io]
rpki = { git="https://github.com/NLnetLabs/rpki-rs.git" }
+14
View File
@@ -0,0 +1,14 @@
[package]
name = "krill_ca"
version = "0.2.0"
authors = ["Tim Bruijnzeels <tim@nlnetlabs.nl>", "Martin Hoffmann <martin@nlnetlabs.nl>"]
[dependencies]
derive_more = "^0.13"
rpki = "^0.3"
serde = { version = "^1.0", features = ["rc"] }
serde_derive = "^1.0"
[dependencies.krill_commons]
path = "../commons"
version = "0.2.0"
+7
View File
@@ -0,0 +1,7 @@
# Krill Certificate Authority
This module provides support for RPKI CA functions.
## License
This software is distributed under the Mozilla Public License 2.0. See the LICENSE file included.
View File