forked from lulf/spdx-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (34 loc) · 997 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
# SPDX-FileCopyrightText: 2020-2021 HH Partners
#
# SPDX-License-Identifier: MIT
[package]
name = "spdx-rs"
version = "0.5.2"
authors = ["Mikko Murto <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Parse and interact with SPDX Documents"
homepage = "https://github.com/doubleopen-project/spdx-rs"
repository = "https://github.com/doubleopen-project/spdx-rs"
documentation = "https://docs.rs/spdx-rs"
readme = "README.md"
keywords = ["SPDX"]
categories = ["data-structures"]
exclude = [
"/tests/",
"/.github/",
"/.gitignore"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1", features = [ "derive" ] }
log = "0.4"
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
thiserror = "1"
strum = "0.24"
strum_macros = "0.24"
spdx-expression = "0.5.2"
nom = "7"
[dev-dependencies]
serde_json = "1"