diff options
| author | Fuwn <[email protected]> | 2022-07-18 16:50:44 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-07-18 16:50:44 -0700 |
| commit | f939854be698f35fd2c69da44fccb4a10ca60385 (patch) | |
| tree | 6f2eb27aa68efbf571c13c370003ee9f5344df22 /Cargo.toml | |
| download | pok-main.tar.xz pok-main.zip | |
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 |