-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 737 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 737 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
[package]
name = "http-box"
version = "0.1.6"
authors = ["Sean Kerr <sean@code-box.org>"]
license = "Apache-2.0"
description = "Fast push/callback oriented HTTP parser"
documentation = "https://docs.rs/http-box"
homepage = "https://github.com/seankerr/rust-http-box"
repository = "https://github.com/seankerr/rust-http-box"
readme = "README.md"
keywords = ["http", "parser", "callback", "push"]
exclude = [".gitignore"]
build = "build.rs"
[dependencies]
byte-slice = "0.1.11"
#byte-slice = { path = "../rust-byte-slice" }
[build-dependencies]
skeptic = "0.13.7"
[dev-dependencies]
byte-slice = "0.1.11"
#byte-slice = { path = "../rust-byte-slice" }
skeptic = "0.13.7"