-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (24 loc) · 901 Bytes
/
Cargo.toml
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 = "http_tiny"
edition = "2021"
version = "2.0.0-pre.6"
authors = ["KizzyCode Software Labs./Keziah Biermann"]
description = "A simple, dependency-less HTTP-header builder and parser"
categories = ["data-structures", "encoding", "network-programming", "parsing", "web-programming"]
keywords = ["HTTP", "HTTP-Header", "HTTP-Request", "HTTP-Response"]
license = "BSD-2-Clause OR MIT"
repository = "https://github.com/KizzyCode/http-tiny-rust"
readme = "README.md"
[badges]
appveyor = { repository = "KizzyCode/http-tiny-rust" }
maintenance = { status = "actively-developed" }
is-it-maintained-open-issues = { repository = "KizzyCode/http-tiny-rust" }
is-it-maintained-issue-resolution = { repository = "KizzyCode/http-tiny-rust" }
[features]
default = ["convenience"]
convenience = []
[dependencies]
[profile.release]
overflow-checks = true
[profile.bench]
overflow-checks = true