summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorAndrew <saintruler@gmail.com>2021-02-14 11:54:20 +0400
committerAndrew <saintruler@gmail.com>2021-02-14 11:54:20 +0400
commit626e11a725934b64260e17e68d273727be76c57e (patch)
tree647b1e52611c290aee1f2866ef480884e8cef379 /Cargo.toml
parentdf1dde8a5a3c55241a1d8433e9a6f725a24cda2c (diff)
Divided package into library and binary
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml13
1 files changed, 5 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 6e5c485..1183527 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,9 +1,6 @@
-[package]
-name = "rust-web"
-version = "0.1.0"
-authors = ["Andrew <saintruler@gmail.com>"]
-edition = "2018"
+[workspace]
-# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
-
-[dependencies]
+members = [
+ "spider",
+ "blog"
+]