书栈网 · BookStack 本次搜索耗时 0.018 秒,为您找到 1523 个相关结果.
  • 2. Using Cargo

    Using Cargo Installation Rustup (Recommended) Package Managers Debian Using Cargo When you start reading about Rust, you will soon meet Cargo , the standard tool used in th...
  • 14.3. Cargo Workspaces

    Cargo Workspaces Creating a Workspace Creating the Second Package in the Workspace Depending on an External Package in a Workspace Adding a Test to a Workspace Cargo Workspa...
  • 1.3. Hello, Cargo!

    Hello, Cargo! Creating a Project with Cargo Building and Running a Cargo Project Building for Release Cargo as Convention Summary Hello, Cargo! Cargo is Rust’s build syste...
  • 2. Cargo Guide

    Cargo Guide Cargo Guide This guide will give you all that you need to know about how to use Cargo todevelop Rust packages. Why Cargo Exists Creating a New Package Working o...
  • Cargo项目管理器

    2912 2018-02-06 《RustPrimer 中文版》
    cargo简介 cargo入门 基于cargo的rust项目组织结构 cargo.toml 和cargo.lock 文件总是位于项目根目录下。 源代码位于src 目录下。 默认的库入口文件是src/lib.rs 。 默认的可执行程序入口文件是src/main.rs 。 其他可选的可执行文件位于src/bin/*.rs (这里每一个rs文件均对应一...
  • 1.2. First Steps with Cargo

    First Steps with Cargo Going further First Steps with Cargo To start a new package with Cargo, use cargo new : $ cargo new hello_world Cargo defaults to —bin to make ...
  • 14.3. Cargo 工作空间

    Cargo 工作空间 创建工作空间 在工作空间中创建第二个包 在工作空间中依赖外部包 为工作空间增加测试 Cargo 工作空间 ch14-03-cargo-workspaces.md commit 7ddc28cfe0bfa6c531a6475c7fa41dfa66e8943c 第十二章中,我们构建一个包含二进制 crate 和...
  • cargo check 用以快速检查

    cargo check 用于快速检查 cargo check 用于快速检查 cargo check 是一个新的子命令,可以在很多情况下加快开发工作流程。 它有什么作用?让我们退一步说,讨论 rustc 如何编译代码。编译有许多“过程”,也就是说,编译器在从源代码到生成最终二进制文件的过程中有许多不同的步骤。 但是,您可以通过两个重要步骤...