[package] name = "ccutils" version = "0.1.0" edition = "2021" authors = ["Jia Chao "] 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" } libc = { version = "0.2.155" } 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"] }