-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (41 loc) · 801 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
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "http-mini"
version = "0.2.0"
edition = "2021"
description = "Mini HTTP server"
license = "MIT"
readme = "README.md"
keywords = [
"http",
"server",
"light",
"mini"
]
authors = ["Iotu Nicolae <nicolae.g.iotu@gmail.com>"]
homepage = "https://github.com/NicolaeIotu/http-mini"
repository = "https://github.com/NicolaeIotu/http-mini"
documentation = "https://docs.rs/http-mini"
categories = ["web-programming::http-server"]
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/src/**",
"/tasks/**",
]
[dependencies]
[dev-dependencies]
grcov = "0.8.20"
[[bin]]
name = "http-mini"
path = "src/main.rs"
test = true
doctest = true
doc = true
[lib]
name = "http_mini_lib"
path = "src/lib.rs"
test = true
doctest = true
doc = true
crate-type = ["lib"]