-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
48 lines (42 loc) · 1.06 KB
/
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
46
47
48
[workspace]
members = [
]
[package]
name = "htp"
authors = ["ivanr = Ivan Ristic <[email protected]>", "cccs = Canadian Centre for Cyber Security"]
version = "2.0.0"
publish = false
edition = "2018"
autobins = false
license-file = "LICENSE"
description = "Security Aware HTP Protocol parsing library"
readme = "README.md"
repository = "https://github.com/CybercentreCanada/libhtp-rs-internal"
homepage = "https://github.com/CybercentreCanada/libhtp-rs-internal"
keywords = ["parser", "HTTP", "protocol", "network", "api"]
categories = ["parsing", "network-programming"]
include = [
"Cargo.toml",
"LICENSE",
"README.md",
"src/**/*.rs",
"cbindgen.toml",
]
[lib]
crate-type = ["staticlib", "rlib", "cdylib"]
[features]
default = ["cbindgen"]
[dependencies]
base64 = "0.12.3"
bstr = "0.2"
libc = "0.2"
nom = "7.1.1"
lzma-rs = { version = "0.2.0", features = ["stream"] }
flate2 = "1.0"
lazy_static = "1.4.0"
time = "=0.3.20"
[dev-dependencies]
rstest = "0.12.0"
[build-dependencies]
cbindgen = { version = "0.14.1", optional = true }
cdylib-link-lines = "0.1.1"