-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (24 loc) · 707 Bytes
/
Cargo.toml
File metadata and controls
33 lines (24 loc) · 707 Bytes
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
[package]
name = "ehttpd"
version = "0.13.1"
edition = "2024"
authors = ["KizzyCode Software Labs./Keziah Biermann <development@kizzycode.de>"]
keywords = []
categories = []
description = "A HTTP server nano-framework, which can be used to create custom HTTP server applications"
license = "BSD-2-Clause OR MIT"
repository = "https://github.com/KizzyCode/ehttpd-rust"
readme = "README.md"
[badges]
appveyor = { repository = "KizzyCode/ehttpd-rust" }
[features]
default = ["server"]
server = ["dep:flume"]
[dependencies]
flume = { version = "0.12.0", default-features = false, optional = true }
[profile.release]
overflow-checks = true
lto = "fat"
[profile.bench]
overflow-checks = true
lto = "fat"