forked from althonos/packageurl.rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (30 loc) · 929 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
[package]
name = "packageurl"
version = "0.4.1"
edition = "2018"
authors = [
"Martin Larralde <[email protected]>",
"Jens Reimann <[email protected]>",
]
license = "MIT"
description = "Rust implementation of the package url specification"
documentation = "https://docs.rs/packageurl"
repository = "https://github.com/althonos/packageurl-rs"
readme = "README.md"
keywords = ["purl", "package-url"]
categories = ["parser-implementations", "encoding", "development-tools"]
[dependencies]
percent-encoding = "2.1.0"
thiserror = "1.0.0"
memchr = { version = "2.4.0", optional = true }
serde = { version = "1.0.0", optional = true, features = ["derive"] }
packageurl_0_3 = { version = "0.3.0", package = "packageurl", optional = true }
[features]
default = []
v0_3 = []
[dev-dependencies]
lazy_static = "^1.0.0"
rstest = "0.22.0"
serde = { version = "1.0.0", features = ["derive"] }
serde_json = "1.0.13"
url = "2"