diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-10-19 19:33:53 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-10-19 19:33:57 +0200 |
commit | 8d6377f8315095b3ab89fe5bcc9ef2a079983b64 (patch) | |
tree | 29f1ff6442f36d7aded0b1efaebb749c974f93a2 /crawler | |
parent | Initial Commit! (diff) | |
download | OSSE-8d6377f8315095b3ab89fe5bcc9ef2a079983b64.tar.gz OSSE-8d6377f8315095b3ab89fe5bcc9ef2a079983b64.tar.bz2 OSSE-8d6377f8315095b3ab89fe5bcc9ef2a079983b64.zip |
Misc: Separate OSSE into components
We now have a cargo workspace with the Crawler, Client and Indexer packages.
Diffstat (limited to 'crawler')
-rw-r--r-- | crawler/Cargo.toml | 12 | ||||
-rw-r--r-- | crawler/src/main.rs | 3 |
2 files changed, 15 insertions, 0 deletions
diff --git a/crawler/Cargo.toml b/crawler/Cargo.toml new file mode 100644 index 0000000..7fbf8b9 --- /dev/null +++ b/crawler/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "crawler" +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 = "crawler" +path = "src/main.rs" diff --git a/crawler/src/main.rs b/crawler/src/main.rs new file mode 100644 index 0000000..b95ce69 --- /dev/null +++ b/crawler/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world! Im the crawler!"); +} |