crane/examples/quick-start-workspace/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
444 B
TOML
Raw Normal View History

2024-04-22 01:23:03 +03:00
[workspace]
resolver = "2"
# Note that we define member crates with a wildcard here and NOT with explicit
# paths because the flake.nix is written in a way such that top-level members
# (`my-cli` and `my-server`) are built as different derivations which avoid being
# rebuilt if the other package's sources change.
members = ["crates/*"]
2024-04-22 01:23:03 +03:00
[workspace.package]
version = "0.1.0"
edition = "2021"
[workspace.metadata.crane]
name = "my-workspace"