< 返回我的博客

子十 发表于 2021-08-04 17:54

Tags:cargo,workspace

Workspace 文档链接

目录结构

workspace-test/
    Cargo.toml
    db/
        src/
            bin/
                init.rs
        Cargo.tml

workspace

workspace-test/Cargo.toml

[workspace]
members = ["db"]
default-member = "db"

子项目

workspace-test/db/Cargo.toml

[package]
name = "db"
version = "0.1.0"
edition = "2018"

[dependencies]

# 可选的可执行文件配置
# [[bin]]
# name = "init"
# path = "src/bin/init.rs"

操作

# 运行 init
cargo run --bin init
# -p 指定项目
cargo run -p db --bin init

评论区

写评论

还没有评论

1 共 0 条评论, 1 页