aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-06-14 08:45:09 +0000
committerFuwn <[email protected]>2022-06-14 08:45:09 +0000
commitb5703a59c59bfe95143cf8dc6cc54f20f67fb4fd (patch)
tree44022e3944119c39df5b9082aaac3a77841c8c10 /Cargo.toml
parentfix(ast): list ast construction (diff)
downloadgerm-b5703a59c59bfe95143cf8dc6cc54f20f67fb4fd.tar.xz
germ-b5703a59c59bfe95143cf8dc6cc54f20f67fb4fd.zip
feat(macros): general utility macros
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml29
1 files changed, 2 insertions, 27 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 39a0401..550daba 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,29 +1,4 @@
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
-[package]
-name = "germ"
-version = "0.2.8"
-authors = ["Fuwn <[email protected]>"]
-edition = "2021"
-description = "The Ultimate Gemini Toolkit."
-documentation = "https://docs.rs/germ"
-readme = "README.md"
-homepage = "https://github.com/gemrest/germ"
-repository = "https://github.com/gemrest/germ"
-license = "GPL-3.0-only"
-keywords = ["gemini", "parser", "lexer", "markdown", "converter"]
-categories = ["encoding"]
-
-[features]
-ast = []
-convert = ["ast"]
-default = ["ast", "convert", "meta", "request"]
-meta = []
-request = ["rustls", "url", "anyhow"]
-
-[dependencies]
-anyhow = { version = "1.0.57", optional = true } # `Result`
-rustls = { version = "0.20.5", features = [
- "dangerous_configuration"
-], optional = true } # TLS
-url = { version = "2.2.2", optional = true } # URL Validation
+[workspace]
+members = ["crates/germ", "crates/germ-macros-impl"]