aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: bbc3f949ba679579017f8d7a988e32e02dc30b3d (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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[package]
name = "september"
version = "0.2.7"
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"]

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

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

# HTTP
actix-web = "4.0.1"

# Logging
pretty_env_logger = "0.5.0"
log = "0.4.18"

# Environment Variables
dotenv = "0.15.0"

# URL Standard
url = "2.3.1"

[build-dependencies]
# Compile-time Environment Variables
vergen = { version = "8.2.1", features = ["git", "gitoxide"] }

# `Result`
anyhow = "1.0.56"