generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
39 lines (35 loc) · 947 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
[package]
name = "spdx"
version = "0.10.7"
authors = [
"Embark <opensource@embark-studios.com>",
"Jake Shadle <jake.shadle@embark-studios.com>",
]
description = "Helper crate for SPDX expressions"
edition = "2021"
rust-version = "1.65.0"
homepage = "https://github.com/EmbarkStudios/spdx"
documentation = "https://docs.rs/spdx"
readme = "README.md"
keywords = ["spdx", "license"]
categories = ["parser-implementations"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EmbarkStudios/spdx"
include = [
"Cargo.toml",
"LICENSE-APACHE",
"LICENSE-MIT",
"README.md",
"src/**/*",
]
[features]
# Includes the full canonical text of each license
text = []
[dependencies]
# In most cases expressions are quite small so we can avoid heap allocations
smallvec = "1.7"
[dev-dependencies]
# Used to print colored diffs in case of test failures
similar-asserts = "1.1"
[package.metadata.docs.rs]
all-features = true