-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
38 lines (32 loc) · 947 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "tsid"
version = "0.3.1"
edition = "2021"
authors = ["Maciej Stępyra <jakudlaty@gmail.com>"]
keywords = ["tsid", "sortable", "identifier", "generator"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/jakudlaty/tsid/"
documentation = "https://docs.rs/tsid/"
description = "A Rust library for generating Time-Sorted Unique Identifiers"
rust-version = "1.67.1"
[dependencies]
rand = "0.8.5"
getrandom = { version = "0.2", features = ["js"] }
serde = { version = "1", optional = true }
bson = { version = "2", optional = true }
lazy_static = "1.4.0"
phf = { version = "0.11.2", features = ["macros"] }
chrono = { version = "0.4", optional = true }
[dev-dependencies]
serde_json = { version = "1" }
bson = "2.7.0"
[features]
default = ["debug", "chrono"]
debug = []
bson_as_string = ["bson"]
serde_as_string = ["serde"]
[package.metadata.release]
allow-branch = ["main"]
[package.metadata]
msrv = "1.67.1"