This repository has been archived on 2022-05-30. You can view files and clone it, but cannot push or open issues or pull requests.
nrid.rs/Cargo.toml

22 lines
728 B
TOML
Raw Normal View History

2021-01-18 21:46:02 -05:00
[package]
name = "nrid"
2022-05-30 13:33:22 -04:00
version = "0.3.0"
2021-01-18 21:46:02 -05:00
authors = ["Michael Pfaff <michael@pfaff.dev>"]
2022-05-30 13:32:36 -04:00
edition = "2021"
2021-05-21 11:01:50 -04:00
license = "MIT OR Apache-2.0"
2021-01-18 21:46:02 -05:00
[features]
2022-05-30 13:32:36 -04:00
default = [ ]
chrono = [ "dep:chrono" ]
serde = [ "dep:serde" ]
# the source of the timestamp is an implementation detail, so a feature is required for the From impl
time = [ ]
2021-01-18 21:46:02 -05:00
[dependencies]
2022-05-30 13:32:36 -04:00
chrono = { version = "0.4.19", default-features = false, optional = true }
rand = { version = "0.8.5", default-features = false, features = [ "getrandom" ] }
serde = { version = "1", default-features = false, features = [ "derive" ], optional = true }
thiserror = { version = "1", default-features = false }
time = { version = "0.3.9", default-features = false, features = [ "std" ] }
2021-01-18 21:46:02 -05:00