diff options
Diffstat (limited to 'docker/diplomate')
-rw-r--r-- | docker/diplomate/.gitignore | 1 | ||||
-rw-r--r-- | docker/diplomate/Cargo.lock | 5 | ||||
-rw-r--r-- | docker/diplomate/Cargo.toml | 9 | ||||
-rw-r--r-- | docker/diplomate/src/main.rs | 3 |
4 files changed, 18 insertions, 0 deletions
diff --git a/docker/diplomate/.gitignore b/docker/diplomate/.gitignore new file mode 100644 index 0000000..2f7896d --- /dev/null +++ b/docker/diplomate/.gitignore @@ -0,0 +1 @@ +target/ diff --git a/docker/diplomate/Cargo.lock b/docker/diplomate/Cargo.lock new file mode 100644 index 0000000..777c2f9 --- /dev/null +++ b/docker/diplomate/Cargo.lock @@ -0,0 +1,5 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "diplomate" +version = "0.1.0" diff --git a/docker/diplomate/Cargo.toml b/docker/diplomate/Cargo.toml new file mode 100644 index 0000000..0efd5bd --- /dev/null +++ b/docker/diplomate/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "diplomate" +version = "0.1.0" +authors = ["Quentin <quentin@deuxfleurs.fr>"] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/docker/diplomate/src/main.rs b/docker/diplomate/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/docker/diplomate/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} |