commit 95601570351c88d017d60612d902f781a29a31d3 Author: prplV Date: Tue Jan 14 15:04:59 2025 +0300 init commit 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!"); +}