You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Cargo.toml 702 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
12345678910111213141516171819202122
  1. [package]
  2. name = "idgen"
  3. version = "1.0.0"
  4. authors = ["yitter <yitter@126.com>"]
  5. edition = "2018"
  6. license = "MIT"
  7. 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."
  8. readme = "README.md"
  9. homepage ="https://github.com/yitter/IdGenerator"
  10. repository = "https://github.com/yitter/IdGenerator"
  11. keywords = ["snowflake", "idgenerator"]
  12. #categories = ["command-line-utilities"]
  13. [dependencies]
  14. libc = "*"
  15. chrono = "0.4.19"
  16. #lazy_static = "1.4.0"
  17. [lib]
  18. name = "idgen"
  19. path = "./src/lib.rs"
  20. crate-type = ["cdylib"]