20 lines
433 B
TOML
20 lines
433 B
TOML
[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"] } |