-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 986 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
38
[package]
name = "ulid-generator-rs"
version = "0.0.112"
description = "A Rust crate for generating ULIDs"
authors = ["Junichi Kato <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["ulid", "uuid", "sortable", "identifier"]
categories = ["data-structures","date-and-time","encoding","parsing","value-formatting"]
readme = "README.md"
repository = "https://github.com/j5ik2o/ulid-generator-rs"
[badges]
github = { repository = "j5ik2o/ulid-generator-rs", workflow = "Rust" }
[dependencies]
rand = { version = "0.8.5" }
chrono = { version = "0.4.38"}
thiserror = { version = "1.0.59" }
serde = { version = "1.0.200", features = ["derive"], optional = true }
uuid = { version = "1.8.0", features = ["v4"], optional = true }
[dev-dependencies]
criterion = "0.5.1"
# huxi/rusty_ulid
rusty_ulid = "2.0.0"
# dylanhart/ulid-rs
ulid = "1.1.2"
# suyash/ulid-rs
ulid-rs = "0.1.0"
[[bench]]
name = "bench_main"
harness = false
# [profile.release]
# debug = true