From f76f1c5d8632f5a12682feb3d3d25a52e030b524 Mon Sep 17 00:00:00 2001 From: Niklas Date: Wed, 2 Mar 2022 14:43:13 -0800 Subject: [PATCH] feat: create `.crawler` crate --- .crawler/Cargo.toml | 8 ++++++++ .crawler/src/main.rs | 15 +++++++++++++++ Cargo.toml | 2 +- 3 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 .crawler/Cargo.toml create mode 100644 .crawler/src/main.rs diff --git a/.crawler/Cargo.toml b/.crawler/Cargo.toml new file mode 100644 index 0000000000..fcb47b0884 --- /dev/null +++ b/.crawler/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "snarkos-crawler" +version = "2.0.2" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/.crawler/src/main.rs b/.crawler/src/main.rs new file mode 100644 index 0000000000..68e5a3e7d8 --- /dev/null +++ b/.crawler/src/main.rs @@ -0,0 +1,15 @@ +// Copyright (C) 2019-2022 Aleo Systems Inc. +// This file is part of the snarkOS library. + +// The snarkOS library is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// The snarkOS library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with the snarkOS library. If not, see . diff --git a/Cargo.toml b/Cargo.toml index 6c8929e586..435be3eb84 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ license = "GPL-3.0" edition = "2021" [workspace] -members = [ ".integration", ".synthetic_node", "environment", "metrics", "network", "rpc", "storage" ] +members = [ ".crawler", ".integration", ".synthetic_node", "environment", "metrics", "network", "rpc", "storage" ] [lib] path = "snarkos/lib.rs"