Basic project setup

This commit is contained in:
Tim Bruijnzeels
2018-07-24 14:32:58 +02:00
parent 3ad7b46725
commit 1cdc6a8a6f
4 changed files with 21 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
.idea/
Cargo.lock
target/
+12
View File
@@ -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 = []
+1
View File
@@ -0,0 +1 @@
+5
View File
@@ -0,0 +1,5 @@
extern crate rpki_publication_server;
fn main() {
println!("Hello, world!");
}