From 8d6377f8315095b3ab89fe5bcc9ef2a079983b64 Mon Sep 17 00:00:00 2001 From: Baitinq Date: Wed, 19 Oct 2022 19:33:53 +0200 Subject: Misc: Separate OSSE into components We now have a cargo workspace with the Crawler, Client and Indexer packages. --- indexer/Cargo.toml | 12 ++++++++++++ indexer/src/main.rs | 3 +++ 2 files changed, 15 insertions(+) create mode 100644 indexer/Cargo.toml create mode 100644 indexer/src/main.rs (limited to 'indexer') diff --git a/indexer/Cargo.toml b/indexer/Cargo.toml new file mode 100644 index 0000000..46846bd --- /dev/null +++ b/indexer/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "indexer" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] + +[[bin]] +name = "indexer" +path = "src/main.rs" diff --git a/indexer/src/main.rs b/indexer/src/main.rs new file mode 100644 index 0000000..33ec668 --- /dev/null +++ b/indexer/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world! Im the indexer!"); +} -- cgit 1.4.1