ccutils/Cargo.toml

22 lines
768 B
TOML
Raw Normal View History

[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"] }