15 lines
403 B
TOML
15 lines
403 B
TOML
|
[package]
|
||
|
name = "ulid-bin"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Z. Charles Dziura <zachary@dziura.email>"]
|
||
|
description = "Generate a Universally Unique Lexicographically Sortable Identifier, and print it to the standard output."
|
||
|
edition = "2021"
|
||
|
license = "GPL-3.0-or-later"
|
||
|
|
||
|
[dependencies]
|
||
|
nanorand = { version = "0.7", features = ["getrandom", "std", "chacha"] }
|
||
|
|
||
|
[[bin]]
|
||
|
name = "ulid"
|
||
|
path = "src/main.rs"
|