@@ -22,7 +22,8 @@ bitcoin = { version = "0.32", features = ["serde", "std"], default-features = fa
2222hex = { version = " 0.2" , package = " hex-conservative" }
2323log = " ^0.4"
2424minreq = { version = " 2.11.0" , features = [" json-using-serde" ], optional = true }
25- async_minreq = { git = " https://github.com/BEULAHEVANJALIN/async-minreq" , default-features = false , features = [" json-using-serde" ], optional = true }
25+ async_minreq = { version = " 0.1.0" , default-features = false , features = [" json-using-serde" ], optional = true }
26+ reqwest = { version = " 0.12" , features = [" json" ], default-features = false , optional = true }
2627
2728# default async runtime
2829tokio = { version = " 1" , features = [" time" ], optional = true }
@@ -42,8 +43,13 @@ blocking-https-native = ["blocking", "minreq/https-native"]
4243blocking-https-bundled = [" blocking" , " minreq/https-bundled" ]
4344
4445tokio = [" dep:tokio" ]
45- async = [" async_minreq" , " async_minreq/proxy" , " tokio?/time" ]
46- async-https = [" async" , " async_minreq/https" ]
47- async-https-native = [" async" , " async_minreq/https-native" ]
48- async-https-rustls = [" async" , " async_minreq/https-rustls" ]
49- async-https-rustls-manual-roots = [" async" ]
46+ async = [" reqwest" , " reqwest/socks" , " tokio?/time" ]
47+ async-https = [" async" , " reqwest/default-tls" ]
48+ async-https-native = [" async" , " reqwest/native-tls" ]
49+ async-https-rustls = [" async" , " reqwest/rustls-tls" ]
50+ async-https-rustls-manual-roots = [" async" , " reqwest/rustls-tls-manual-roots" ]
51+ async-minreq = [" async_minreq" , " async_minreq/proxy" , " tokio?/time" ]
52+ async-minreq-https = [" async-minreq" , " async_minreq/https" ]
53+ async-minreq-https-native = [" async-minreq" , " async_minreq/https-native" ]
54+ async-minreq-https-rustls = [" async-minreq" , " async_minreq/https-rustls" ]
55+ async-minreq-https-rustls-manual-roots = [" async-minreq" ]
0 commit comments