ccutils/Cargo.toml
Jia Chao f1b2de1a97 增加 util 模块
添加功能函数:
  uuid  生成一个新的 UUID。

Signed-off-by: Jia Chao <jiac13@chinaunicom.cn>
2024-07-04 16:36:46 +08:00

22 lines
768 B
TOML

[package]
name = "ccutils"
version = "0.1.0"
edition = "2021"
authors = ["Jia Chao <jiachao2130@126.com>"]
license = "MIT"
keywords = ["cc", "utils"]
include = ["src/**/*", "Cargo.toml", "README.md"]
description = "A complex toolset that include various small functions."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures-util = { version = "0.3" }
indicatif = { version = "0.17" }
path-absolutize = { version = "3" }
reqwest = { version = "0.12", features = ["stream"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["env-filter", "local-time"] }
uuid = { version = "1", features = ["v4"] }