1个稳定版本
1.0.0 | 2019年8月18日 |
---|
#15 在 #dbg
8KB
95 行
dbg_as_curl
──
一个简单的辅助工具,用于获取cURL命令行,以便执行reqwest
调用
let client = reqwest::Client::new();
dbg_as_curl!(
client.get("https://example.org").bearer_auth("foo")
).send()?;
它的工作方式与标准宏dbg!
相同,但它将打印一个可以复制并粘贴以执行reqwest
调用的命令行
[tests/tests.rs:4] client.get("http://example.org").bearer_auth("foo") = curl --header 'authorization: Bearer foo' 'http://example.org/'
依赖项
~19MB
~424K SLoC