Files
ecr/Cargo.toml
T
vhaudiquet b6e5b4f006 refactor: split ecr into library and cli crates
The root package becomes a virtual workspace: `crates/ecr` holds the
library (package name `ecr`) and `crates/ecr-cli` the command line
front-end, which keeps installing the `ecr` binary. No behavior change.

The library must not depend on CLI types, so mount::setup_mounts now
takes the `no_bind` flag instead of a `&Args`.
2026-09-20 23:29:03 +02:00

16 lines
256 B
TOML

[workspace]
resolver = "2"
members = ["crates/ecr", "crates/ecr-cli"]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.77"
license = "MIT"
authors = ["Valentin Haudiquet"]
[profile.release]
strip = true
opt-level = "z"
lto = true