diff options
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!"); +} |