forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[stduuid] Making changes requested in pull request microsoft#16382.
- Loading branch information
Showing
2 changed files
with
19 additions
and
23 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,22 +1,18 @@ | ||
{ | ||
"name": "stduuid", | ||
"version-string": "1.0-5890c94", | ||
"description": "A C++17 cross-platform single-header library implementation for universally unique identifiers, simply know as either UUID or GUID (mostly on Windows)", | ||
"homepage": "https://github.com/mariusbancila/stduuid", | ||
"license": "MIT", | ||
"features": [ | ||
{ | ||
"name": "test", | ||
"description": "Build the unit tests" | ||
}, | ||
{ | ||
"name": "system-gen", | ||
"description": "Enable operating system uuid generator" | ||
}, | ||
{ | ||
"name": "cxx20-span", | ||
"description": "Using span from std instead of gsl" | ||
} | ||
] | ||
} | ||
|
||
{ | ||
"name": "stduuid", | ||
"version-string": "2019-02-23", | ||
"description": "A C++17 cross-platform single-header library implementation for universally unique identifiers, simply know as either UUID or GUID (mostly on Windows)", | ||
"homepage": "https://github.com/mariusbancila/stduuid", | ||
"license": "MIT", | ||
"features": { | ||
"cxx20-span": { | ||
"description": "Using span from std instead of gsl" | ||
}, | ||
"system-gen": { | ||
"description": "Enable operating system uuid generator" | ||
}, | ||
"test": { | ||
"description": "Build the unit tests" | ||
} | ||
} | ||
} |