Rust
文章平均质量分 68
superxxd
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
rust error: failed to parse manifest at `/home/develop/rust/study/queryer/queryer/Cargo.toml` 需要指定路径
[package] name = "queryer" version = "0.1.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[example]] name = "dialect" path = "example/dialect.rs" [dependencies] anyhow = "1" # 错误处理,其.原创 2021-09-20 11:08:57 · 2316 阅读 · 0 评论 -
Rust基础语法,快速入门
Rust 是一门系统编程语言,专注于安全,尤其是并发安全。它支持函数式和命令式以及泛型等编程范式的多范式语言,且 TensorFlow 等深度学习框架也把它作为一个优秀的前端语言。 Rust 在语法上和 C、C++类似,都由花括弧限定代码块,并有相同的控制流关键字,但 Rust 设计者想要在保证性能的同时提供更好的内存安全。Rust 自 2016 年就已经开源了,在各种开发者调查中,它也总能获得「最受欢迎的语言」这一称赞,目前该开源项目已有 42.9K 的 Star 量。 以下来自 Amos 的博客 它并原创 2021-06-22 08:19:59 · 1081 阅读 · 0 评论 -
rust学习资源汇总
语法详细 https://doc.rust-lang.org/book/index.html 语法参考 https://doc.rust-lang.org/reference/index.html 高级 https://doc.rust-lang.org/nomicon/index.html c/c++ gen rust code https://crates.io/crates/bindgen tonari blog https://blog.tonari.no/why-we-love-原创 2021-06-21 19:35:14 · 900 阅读 · 0 评论 -
ubuntu install rust
在https://zhuanlan.zhihu.com/p/136848439基础上完善 1、进入rust网址下载对应的x86_64-unknown-linux-gnu 安装文件 https://forge.rust-lang.org/infra/other-installation-methods.html#which 2、chmod +x 777 rustup-init ./rustup-init source ~/.cargo/env 3、/etc/profile中增加以下环境变量原创 2021-06-21 18:30:30 · 512 阅读 · 0 评论
分享