blob: 769359044f2355c2e586a6b785cc020338892e20 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
|