diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..7693590 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,24 @@ +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[package] +name = "pok" +version = "0.1.0" +authors = ["Fuwn <[email protected]>"] +edition = "2021" +description = "Google for Gemini" +readme = "README.md" +homepage = "https://github.com/gemrest/pok" +repository = "https://github.com/gemrest/pok" +license = "GPL-3.0-only" +keywords = ["gemini", "client", "indexer", "crawler"] + +# Slower builds, faster executables +[profile.release] +lto = "fat" +codegen-units = 1 +opt-level = 3 + +[dependencies] +germ = { version = "0.3.5", default-features = false, features = ["request", "ast"] } # Gemini +url = "2.2.2" # URL +robots_txt = "0.7.0" # /robots.txt |