aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: db9f603f1740a0c6d460093a86b7df09ab0b8b1c (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[package]
name = "september"
version = "0.3.3"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "A simple and efficient Gemini-to-HTTP proxy."
readme = "README.md"
homepage = "https://github.com/gemrest/september"
repository = "https://github.com/gemrest/september"
license = "GPL-3.0-only"
keywords = ["rust", "gemini", "proxy"]
categories = ["web-programming", "web-programming::http-server"]
rust-version = "1.83.0"

# Slower builds, faster executables
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3

[dependencies]
# Gemini
germ = { version = "0.4.7", features = ["ast", "meta"] }

# HTTP
actix-web = "4.11.0"

# Async Runtime
tokio = { version = "1", features = ["net", "io-util"] }

# Logging
pretty_env_logger = "0.5.0"
log = "0.4.27"

# Environment Variables
dotenv = "0.15.0"

# URL Standard
url = "2.5.4"

# Markdown Encoding
comrak = { version = "0.29.0", default-features = false }

# Form Parsing
serde = { version = "1", features = ["derive"] }