generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b4f753
commit 4918e2b
Showing
2 changed files
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
[package] | ||
name = "spdx" | ||
version = "0.6.0" | ||
authors = ["Embark <[email protected]>", "Jake Shadle <[email protected]>"] | ||
authors = [ | ||
"Embark <[email protected]>", | ||
"Jake Shadle <[email protected]>", | ||
] | ||
description = "Helper crate for SDPX expressions" | ||
edition = "2018" | ||
homepage = "https://github.com/EmbarkStudios/spdx" | ||
|
@@ -11,16 +14,11 @@ keywords = ["spdx", "license"] | |
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/EmbarkStudios/spdx" | ||
|
||
include = [ | ||
"Cargo.toml", | ||
"LICENSE-APACHE", | ||
"LICENSE-MIT", | ||
"src/**/*", | ||
] | ||
include = ["Cargo.toml", "LICENSE-APACHE", "LICENSE-MIT", "src/**/*"] | ||
|
||
[dependencies] | ||
# In most cases expressions are quite small so we can avoid heap allocations | ||
smallvec = "1.6" | ||
smallvec = "1.7" | ||
|
||
[dev-dependencies] | ||
# Used to print colored diffs in case of test failures | ||
|