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

[package]
name = "windmark"
version = "0.0.0"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "Simple and highly performant 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", "log"]

[dependencies]
# TCP
openssl = "0.10.38"
# tokio = { version = "1.17.0", features = ["full"] }
# tokio-openssl = "0.5.0"
# tokio-uds = "0.2.7"
url = "2.2.2"

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