diff options
| author | Fuwn <[email protected]> | 2022-06-14 08:45:09 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-06-14 08:45:09 +0000 |
| commit | b5703a59c59bfe95143cf8dc6cc54f20f67fb4fd (patch) | |
| tree | 44022e3944119c39df5b9082aaac3a77841c8c10 /Cargo.toml | |
| parent | fix(ast): list ast construction (diff) | |
| download | germ-b5703a59c59bfe95143cf8dc6cc54f20f67fb4fd.tar.xz germ-b5703a59c59bfe95143cf8dc6cc54f20f67fb4fd.zip | |
feat(macros): general utility macros
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 29 |
1 files changed, 2 insertions, 27 deletions
@@ -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"] |