mirror of
https://github.com/house-of-vanity/v2-uri-parser.git
synced 2025-12-15 14:47:51 +00:00
24 lines
600 B
TOML
24 lines
600 B
TOML
[package]
|
|
name = "v2parser"
|
|
version = "0.4.0"
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
base64 = "0.22.1"
|
|
clap = { version = "4.4.6", features = ["derive"] }
|
|
http = "1.3.1"
|
|
querystring = "1.1.0"
|
|
regex = "1.9.6"
|
|
serde = { version = "1.0.189", features = ["derive"] }
|
|
serde_json = "1.0.107"
|
|
urlencoding = "2"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tempfile = "3"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
signal-hook = "0.3"
|
|
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
|
|
futures = "0.3"
|