2024-10-03 14:56:30 +00:00
[ package ]
name = "hoppscotch-agent"
2024-10-04 07:30:32 +00:00
version = "0.1.1"
2024-10-03 14:56:30 +00:00
description = "A cross-platform HTTP request agent for Hoppscotch for advanced request handling including custom headers, certificates, proxies, and local system integration."
authors = [ "CuriousCorrelation" , "AndrewBastin" ]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[ lib ]
name = "hoppscotch_agent_lib"
crate-type = [ "staticlib" , "cdylib" , "rlib" ]
[ build-dependencies ]
2024-10-23 15:52:19 +00:00
tauri-build = { version = "2.0.1" , features = [ ] }
2024-10-03 14:56:30 +00:00
[ dependencies ]
2024-10-23 15:52:19 +00:00
tauri = { version = "2.0.4" , features = [ "tray-icon" , "image-png" ] }
tauri-plugin-shell = "2.0.1"
tauri-plugin-autostart = "2.0.1"
2024-10-03 14:56:30 +00:00
serde = { version = "1" , features = [ "derive" ] }
serde_json = "1"
tokio = { version = "1.40.0" , features = [ "full" ] }
dashmap = { version = "6.1.0" , features = [ "serde" ] }
2024-10-23 15:52:19 +00:00
axum = { version = "0.7.7" }
2024-10-03 14:56:30 +00:00
axum-extra = { version = "0.9.4" , features = [ "typed-header" ] }
tower-http = { version = "0.6.1" , features = [ "cors" ] }
tokio-util = "0.7.12"
2024-10-23 15:52:19 +00:00
uuid = { version = "1.11.0" , features = [ "v4" , "fast-rng" ] }
2024-10-03 14:56:30 +00:00
chrono = { version = "0.4" , features = [ "serde" ] }
rand = "0.8.5"
log = "0.4.22"
env_logger = "0.11.5"
2024-10-23 15:52:19 +00:00
curl = { version = "0.4.47" , features = [ "ntlm" , "static-curl" , "static-ssl" ] }
openssl = { version = "0.10.68" , features = [ "vendored" ] }
openssl-sys = { version = "0.9.104" , features = [ "vendored" ] }
2024-10-03 14:56:30 +00:00
url-escape = "0.1.1"
thiserror = "1.0.64"
2024-10-23 15:52:19 +00:00
tauri-plugin-store = "2.0.1"
2024-10-03 14:56:30 +00:00
x25519-dalek = { version = "2.0.1" , features = [ "getrandom" ] }
base16 = "0.2.1"
aes-gcm = { version = "0.10.3" , features = [ "aes" ] }
2024-10-23 15:52:19 +00:00
tauri-plugin-updater = "2.0.2"
tauri-plugin-dialog = "2.0.1"
2024-10-03 14:56:30 +00:00
http = "1.1.0"
lazy_static = "1.5.0"
[ dev-dependencies ]
mockito = "1.5.0"