From 122fa2f68919646301485c5528669455f4c9e096 Mon Sep 17 00:00:00 2001 From: Inga Date: Mon, 13 Nov 2023 20:30:43 +0000 Subject: [PATCH] created hostnames_allocator project structure --- hostnames_allocator/Cargo.toml | 8 ++++++++ hostnames_allocator/src/main.rs | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 hostnames_allocator/Cargo.toml create mode 100644 hostnames_allocator/src/main.rs diff --git a/hostnames_allocator/Cargo.toml b/hostnames_allocator/Cargo.toml new file mode 100644 index 0000000..d700871 --- /dev/null +++ b/hostnames_allocator/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "hostnames_allocator" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/hostnames_allocator/src/main.rs b/hostnames_allocator/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/hostnames_allocator/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}