-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
3 changed files
with
28 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "cronos", | ||
"keywords": "timer, chrono, std, std::chrono, tick, ticks, uptime, clock, c++17, constexpr, library", | ||
"description": "A std::chrono wrapper for target system's native tick count.", | ||
"homepage": "https://github.com/ardnew/cronos", | ||
"authors": [ | ||
{ | ||
"name": "ardnew", | ||
"email": "andrew@ardnew.com", | ||
"url": "https://github.com/ardnew", | ||
"maintainer": "true" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ardnew/cronos.git" | ||
}, | ||
"license": "MIT", | ||
"version": "0.1.4", | ||
"headers": [ | ||
"cronos.hpp" | ||
], | ||
"build": { | ||
"flags": "-std=c++17" | ||
} | ||
} |
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,10 +1,10 @@ | ||
name=cronos | ||
version=0.1.3 | ||
version=0.1.4 | ||
author=ardnew | ||
maintainer=ardnew (andrew@ardnew.com) | ||
sentence=A std::chrono wrapper for target system's native tick count. | ||
paragraph=This abstraction allows applications to hide the exact data type representation and period of the system's native ticker, which provides a consistent interface for specifying delays, timeouts, etc., regardless of the target system. | ||
category=Timing | ||
url=https://github.com/ardnew/cronos | ||
architectures=* | ||
includes=cronos.h | ||
includes=cronos.hpp |
File renamed without changes.