1
0
mirror of synced 2025-12-16 01:58:09 +08:00
Files
SnowFlake-IdGenerator/Rust/source/Cargo.toml
2021-04-06 00:19:58 +08:00

23 lines
702 B
TOML

[package]
name = "idgen"
version = "1.0.0"
authors = ["yitter <yitter@126.com>"]
edition = "2018"
license = "MIT"
description="Shorter ID and faster generation with a new snowflake drift algorithm. The core is to shorten the ID length, but also can have a very high instantaneous concurrent processing capacity (50W/0.1s), and powerful configuration capacity."
readme = "README.md"
homepage ="https://github.com/yitter/IdGenerator"
repository = "https://github.com/yitter/IdGenerator"
keywords = ["snowflake", "idgenerator"]
#categories = ["command-line-utilities"]
[dependencies]
libc = "*"
chrono = "0.4.19"
#lazy_static = "1.4.0"
[lib]
name = "idgen"
path = "./src/lib.rs"
crate-type = ["cdylib"]