4个版本
0.1.3 | 2022年3月6日 |
---|---|
0.1.2 | 2021年3月12日 |
0.1.1 | 2020年10月16日 |
0.1.0 | 2020年10月11日 |
#356 in HTTP客户端
19KB
343 行
wandbox-rs
Rust中的Wandbox API绑定
将以下内容添加到您的Cargo.toml
[dependencies]
wandbox = "0.1"
示例
let wbox : Wandbox = Wandbox::new(None, None).await?;
let mut builder = crate::CompilationBuilder::new();
builder.target("gcc-6.3.0");
builder.options_str(vec!["-Wall", "-Werror"]);
builder.code("#include<iostream>\nint main()\n{\nstd::cout<<\"test\";\n}");
builder.build(&wbox)?;
let res = builder.dispatch().await.expect("Failed to lookup");
许可证
本项目受LGPL v3许可证的许可。此许可证可在LICENSE.txt中找到。
依赖项
~5–21MB
~274K SLoC