Files
sign-doc/rust/Cargo.toml

20 lines
433 B
TOML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[package]
name = "api-signer"
version = "0.1.0"
edition = "2021"
authors = ["Sound Force <info@example.com>"]
description = "API签名工具提供请求签名与验证功能"
[dependencies]
md-5 = "0.10.5"
sha1 = "0.10.5"
sha2 = "0.10.6"
hmac = "0.12.1"
hex = "0.4.3"
url = "2.3.1"
once_cell = "1.17.1"
chrono = "0.4.23"
thiserror = "2.0.12"
regex = "1.7.3"
dotenv = "0.15.0"
clap = { version = "4.1.11", features = ["derive"] }