书栈网 · BookStack 本次搜索耗时 0.019 秒,为您找到 1523 个相关结果.
  • Stability policy

    Stability policy The cargo-nextest binary Libraries Minimum supported Rust version (MSRV) Stability policy This section contains information on how cargo-nextest will evolve ...
  • 测试

    测试 测试 我们知道测试是任何软件不可缺少的一部分!Rust 对单元和集成测试提供一流的支持(参见《Rust 程序设计语言》中的关于测试的章节 )。 通过上面链接的关于测试章节,我们看到了如何编写单元测试和集成测试。在代码目录组织上,我们可以将单元测试放在需要测试的模块中,并将集成测试放在源码中 tests/ 目录中: foo ├── ...
  • 采用发布配置自定义构建

    采用发布配置自定义构建 采用发布配置自定义构建 ch14-01-release-profiles.md commit 0f10093ac5fbd57feb2352e08ee6d3efd66f887c 在 Rust 中 发布配置 (release profiles)是预定义的、可定制的带有不同选项的配置,他们允许程序员更灵活地控制代码编译的...
  • Usage

    Usage Basic usage Limitations Usage This section covers usage, features and options for cargo-nextest. Basic usage To build and run all tests in a workspace, cd into the wor...
  • 依赖

    依赖 依赖 大多数程序都会依赖于某些库。如果你曾经手动管理过库依赖,那么你就知道这会带来的极大的痛苦。幸运的是,Rust 的生态链标配 cargo 工具!cargo 可以管理项目的依赖关系。 下面创建一个新的 Rust 项目: # 二进制可执行文件 cargo new foo # 或者库 cargo new -- lib f...
  • 2. Command Line Tool

    619 2020-06-20 《mdBook Document》
    Command Line Tool Install From Binaries Install From Source Pre-requisite Install Crates.io version Install Git version Command Line Tool mdBook can be used either as a co...
  • 运行测试

    控制测试如何运行 并行或连续的运行测试 显示函数输出 通过名称来运行测试的子集 运行单个测试 过滤运行多个测试 除非指定否则忽略某些测试 控制测试如何运行 ch11-02-running-tests.md commit 550c8ea6f74060ff1f7b67e7e1878c4da121682d 就像 cargo run 会...
  • Compiling and Linking in More Detail

    Compiling and Linking in More Detail Your main() entry point Processing command-line arguments Use a crate - easy command-line processing Exit code Optimized compilation Incre...
  • Metadata

    Metadata Metadata In using Nu, you may have come across times where you felt like there was something extra going on behind the scenes. For example, let’s say that you try to op...