♻️ Simple & Efficient Gemini-to-HTTP Proxy fuwn.net
proxy gemini-protocol protocol gemini http rust
at main 47 lines 1.1 kB view raw
1# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 2 3[package] 4name = "september" 5version = "0.3.3" 6authors = ["Fuwn <contact@fuwn.me>"] 7edition = "2021" 8description = "A simple and efficient Gemini-to-HTTP proxy." 9readme = "README.md" 10homepage = "https://github.com/gemrest/september" 11repository = "https://github.com/gemrest/september" 12license = "GPL-3.0-only" 13keywords = ["rust", "gemini", "proxy"] 14categories = ["web-programming", "web-programming::http-server"] 15rust-version = "1.83.0" 16 17# Slower builds, faster executables 18[profile.release] 19lto = "fat" 20codegen-units = 1 21opt-level = 3 22 23[dependencies] 24# Gemini 25germ = { version = "0.4.7", features = ["ast", "meta"] } 26 27# HTTP 28actix-web = "4.11.0" 29 30# Async Runtime 31tokio = { version = "1", features = ["net", "io-util"] } 32 33# Logging 34pretty_env_logger = "0.5.0" 35log = "0.4.27" 36 37# Environment Variables 38dotenv = "0.15.0" 39 40# URL Standard 41url = "2.5.4" 42 43# Markdown Encoding 44comrak = { version = "0.29.0", default-features = false } 45 46# Form Parsing 47serde = { version = "1", features = ["derive"] }