-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (27 loc) · 982 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
[package]
name = "snowflake_me"
version = "0.3.1"
authors = ["houseme <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "A distributed unique ID generator inspired by Twitter's Snowflake"
homepage = "https://github.com/houseme/snowflake-rs"
repository = "https://github.com/houseme/snowflake-rs"
documentation = "https://docs.rs/snowflake_me/"
readme = "README.md"
keywords = ["snowflake", "random", "id", "generator", "uniqueness"]
categories = ["development-tools", "data-structures", "algorithms"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
ip-fallback = ["dep:pnet_datalink"]
[dependencies]
chrono = { version = "0.4", default-features = false, features = ["now"] }
thiserror = "1"
pnet_datalink = { version = "0.35", default-features = false, optional = true }
base64 = "0.22.1"
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "bench"
harness = false