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

[package]
name = "windmark"
version = "0.3.4"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "An elegant and highly performant async Gemini server framework"
documentation = "https://docs.rs/windmark"
readme = "README.md"
homepage = "https://github.com/gemrest/windmark"
repository = "https://github.com/gemrest/windmark"
license = "GPL-3.0-only"
keywords = ["gemini"]
categories = ["web-programming"]

[features]
logger = ["pretty_env_logger"]
auto-deduce-mime = ["tree_magic"]
response-macros = []

[dependencies]
# SSL
openssl = "0.10.38"
tokio-openssl = "0.6.3"

# Non-blocking I/O
tokio = { version = "1.26.0", features = ["full"] }
async-trait = "0.1.68"

# Logging
pretty_env_logger = { version = "0.4.0", optional = true }
log = "0.4.16"

# URL
url = "2.2.2"
regex = "1.5.5"
matchit = "0.6.0"

tree_magic = { version = "0.2.3", optional = true } # MIME

paste = "1.0.12" # Token Pasting