From 95601570351c88d017d60612d902f781a29a31d3 Mon Sep 17 00:00:00 2001 From: prplV Date: Tue, 14 Jan 2025 15:04:59 +0300 Subject: [PATCH] init commit --- .gitignore | 2 ++ Cargo.toml | 15 +++++++++++++++ crates/api-puller/Cargo.toml | 6 ++++++ crates/api-puller/src/main.rs | 3 +++ crates/data-transfer/Cargo.toml | 6 ++++++ crates/data-transfer/src/main.rs | 3 +++ crates/integr-config/Cargo.toml | 6 ++++++ crates/integr-config/src/main.rs | 3 +++ crates/integrd/Cargo.toml | 6 ++++++ crates/integrd/src/main.rs | 3 +++ crates/snmp-puller/Cargo.toml | 6 ++++++ crates/snmp-puller/src/main.rs | 3 +++ 12 files changed, 62 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 crates/api-puller/Cargo.toml create mode 100644 crates/api-puller/src/main.rs create mode 100644 crates/data-transfer/Cargo.toml create mode 100644 crates/data-transfer/src/main.rs create mode 100644 crates/integr-config/Cargo.toml create mode 100644 crates/integr-config/src/main.rs create mode 100644 crates/integrd/Cargo.toml create mode 100644 crates/integrd/src/main.rs create mode 100644 crates/snmp-puller/Cargo.toml create mode 100644 crates/snmp-puller/src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..869df07 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +Cargo.lock \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..63852cd --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,15 @@ +[workspace] +resolver = "2" +members = [ + "crates/api-puller", + "crates/snmp-puller", + "crates/integr-config", + "crates/data-transfer", + "crates/integrd", +] + +[profile.dev] +debug = true + +[profile.test] +debug = false \ No newline at end of file diff --git a/crates/api-puller/Cargo.toml b/crates/api-puller/Cargo.toml new file mode 100644 index 0000000..d08d434 --- /dev/null +++ b/crates/api-puller/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "api-puller" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/crates/api-puller/src/main.rs b/crates/api-puller/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/crates/api-puller/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/crates/data-transfer/Cargo.toml b/crates/data-transfer/Cargo.toml new file mode 100644 index 0000000..55bc1dd --- /dev/null +++ b/crates/data-transfer/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "data-transfer" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/crates/data-transfer/src/main.rs b/crates/data-transfer/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/crates/data-transfer/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/crates/integr-config/Cargo.toml b/crates/integr-config/Cargo.toml new file mode 100644 index 0000000..729c337 --- /dev/null +++ b/crates/integr-config/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "integr-config" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/crates/integr-config/src/main.rs b/crates/integr-config/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/crates/integr-config/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/crates/integrd/Cargo.toml b/crates/integrd/Cargo.toml new file mode 100644 index 0000000..487bcf5 --- /dev/null +++ b/crates/integrd/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "integrd" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/crates/integrd/src/main.rs b/crates/integrd/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/crates/integrd/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/crates/snmp-puller/Cargo.toml b/crates/snmp-puller/Cargo.toml new file mode 100644 index 0000000..2d6ed5c --- /dev/null +++ b/crates/snmp-puller/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "snmp-puller" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/crates/snmp-puller/src/main.rs b/crates/snmp-puller/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/crates/snmp-puller/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}