mirror of
https://github.com/NLnetLabs/krill.git
synced 2026-09-18 07:27:42 +02:00
Basic project setup
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
.idea/
|
||||
Cargo.lock
|
||||
target/
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
[package]
|
||||
name = "rpki-publication-server"
|
||||
version = "0.1.0"
|
||||
authors = ["Tim Bruijnzeels <tim@nlnetlabs.nl>", "Martin Hoffmann <martin@nlnetlabs.nl>"]
|
||||
|
||||
[dependencies]
|
||||
|
||||
[features]
|
||||
# Panic when a parsing error occurs. This feature is intended for
|
||||
# development use exclusively and MUST NOT be enabled in release builds.
|
||||
extra-debug = []
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
extern crate rpki_publication_server;
|
||||
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Reference in New Issue
Block a user