-
Notifications
You must be signed in to change notification settings - Fork 102
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
4203680
commit e78becb
Showing
1 changed file
with
25 additions
and
0 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,25 @@ | ||
name = "ulid" | ||
description = "Universally Unique Lexicographically Sortable Identifier" | ||
long-description = ''' | ||
<img src="https://github.com/ulid/spec/raw/master/logo.png" alt="image" width="100" height="auto"> | ||
In a nutshell, a ULID code is a combination of 48-bit time stamp (most significant part), | ||
with a millisecond accuracy, and a 80-bit random number (least significant part), | ||
totalling 128 bits, that is 16 bytes (octets). | ||
The preferred (canonical) representation of a ULID is in a certain version of the Base32 encoding. | ||
''' | ||
version = "20240205.0.0" | ||
|
||
authors = ["Gautier de Montmollin"] | ||
maintainers = ["[email protected]"] | ||
maintainers-logins = ["zertovitch"] | ||
licenses = "MIT" | ||
website = "https://github.com/zertovitch/ulid" | ||
tags = ["uild, "uuid", "guid", "identifier", "timestamp"] | ||
project-files = ["ulid.gpr"] | ||
executables = ["ulid_test"] | ||
|
||
[origin] | ||
url = "https://sourceforge.net/projects/ulid-ada/files/ulid-2024-02-05.zip" | ||
hashes = ["sha512:455f3c7d553979441ab6ee851e18d32e4db294675b32c7abaea28cc1ba901b23e777a23ea39f4aae6560f3d6ab6aeb1015832395229ae61d690914daa8b334d2"] |