rust 使用记录

rust 使用记录

安装

参考 rust install

sh 复制代码
sudo apt install -y curl
# 安装
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# 加载环境变量
source $HOME/.cargo/env
# 查看版本
rustc --version
rustc -V

# 更新Rust
rustup update

# 卸载
# rustup self uninstall

包管理

rustc:用于 Rust 编程语言的 Rust 编译器

cargo 提供了一系列的工具,从项目的建立、构建到测试、运行直至部署,为 Rust 项目的管理提供尽可能完整的手段, 与 Rust 语言及其编译器 rustc 紧密结合

sh 复制代码
sudo apt install cargo
# 创建项目
# cargo new world_hello
# --bin 默认, 可运行的项目
# --lib 依赖库项目

# 有两种方式可以运行项目:
cargo run
# 2) 手动编译和运行项目
cargo build
./target/debug/world_hello

# 默认是debug,代码的编译速度会非常快, 运行速度就慢,编译器不会做任何的优化
cargo run --release

镜像源

A high speed crates.io mirror

相关推荐
Victor3561 天前
Redis(154)Redis的数据一致性如何保证?
后端
葡萄成熟时 !1 天前
黑马学生管理系统
java·开发语言
秋邱1 天前
高等教育 AI 智能体的 “导学诊践” 闭环
开发语言·网络·数据库·人工智能·python·docker
r***86981 天前
springboot三层架构详细讲解
spring boot·后端·架构
Victor3561 天前
Redis(155)Redis的数据持久化如何优化?
后端
许泽宇的技术分享1 天前
AgentFramework-零基础入门-第08章_部署和监控代理
人工智能·后端·agent框架·agentframework
j***63081 天前
MacOS升级ruby版本
开发语言·macos·ruby
IT_陈寒1 天前
Python开发者必看:5个被低估但能提升200%编码效率的冷门库实战
前端·人工智能·后端
g***78911 天前
鸿蒙NEXT(五):鸿蒙版React Native架构浅析
android·前端·后端
g***86691 天前
PHP进阶-在Ubuntu上搭建LAMP环境教程
开发语言·ubuntu·php