$ git clone https://github.com/rust-lang/rust-by-example $ cd rust-by-example $ cargo install mdbook $ mdbook build $ mdbook serveTo be able to run the examples, you must be connected to the internet; you can read all content offline, however!Contributing...
$ git clone https://github.com/rust-lang-cn/rust-by-example-cn $cdrust-by-example-cn $ cargo install mdbook $ mdbook build $ mdbook serve 为了能够运行这些示例,你必须要连接到网络;当然你可以离线阅读所有这些内容。 如何贡献 请查看CONTRIBUTING.md文件了解详细内容。
SiegeLord/RustCMake— an example project showing usage of CMake with Rust Fleet [fleet-rs] - The blazing fast build tool for Rust. Github actions icepuma/rust-action— rust github action peaceiris/actions-mdbook— GitHub Actions for mdBook Nix nix-community/fenix— Rust toolchains and rust...
SiegeLord/RustCMake - an example project showing usage of CMake with Rust facebook/buck2 - Buck2 is a large-scale build tool built in Rust Fleet [fleet-rs] - The blazing fast build tool for Rust. GitHub actions icepuma/rust-action - rust github action peaceiris/actions-mdbook - GitH...
--example name…构建指定的示例。该标志可以多次指定,并支持常见的Unix glob模式。 --examples构建所有示例目标。 --test name…生成指定的集成测试。该标志可以多次指定,并支持常见的Unix glob模式。 --tests在测试模式下构建所有设置了test = true清单标志的目标。默认情况下,这包括作为单元测试和集成测试构建的库...
由于这是一个视频直播分享的讲稿,为了能够快速给大家进行演示,我事先准备好了各个环节需要使用的代码,大家可以先克隆https://github.com/myrfy001/rust_golang_ffi_demo这个GitHub仓库,并切换到example_1这个分支上,来查看第一个示例的代码: 这里呢,我们可以看到顶层有rust和golang这两个文件夹,里面分别存储了示例...
// https://github.com/SeaQL/sea-orm/blob/master/examples/rocket_example/src/main.rs// 只摘录关键代码mod post;pub use post::EntityasPost;constDEFAULT_POSTS_PER_PAGE:usize=5;// 使用 Rocket web 框架的一个 endpoint api#[post("/",data="<post_form>")]asyncfncreate(conn:Connection<Db>,...
Rust被誉为 【能够规避内存漏洞】的语言,在这几年收到很多开发者喜爱。所以在这个语言下能出现的UAF漏洞,自然也有价值研究一下。本文就一个常见开源库中发现的UAF漏洞进行分析。 漏洞背景 漏洞本身来自一个叫做Casandra-rs的开源库。 Cassandra 是一个开源的分布式数据库管理系统,由 Apache 软件基金会开发和维护。它...
然后说最好的方式是什么什么……结果我一想……这就是 Rust 的错误处理方式呀……
GitHub:https://github.com/google/comprehensive-rust。 在线阅读:https://google.github.io/comprehensive-rust/。 Rust By Example Rust by Example (RBE) 是一个可运行示例的集合,用于说明各种 Rust 概念和标准库,可以通过示例学习 Rust。 GitHub:https://github.com/rust-lang/rust-by-example。