crane/checks/bindeps/Cargo.toml
Roman Volosatovs 5291dd0aa7
feat: add support for bindeps feature (#258)
Write a `main.rs` to `src/bin/dummy` within the generated dummy source,
rather than `src/main.rs` to account for `illegalBin` test case

Signed-off-by: Roman Volosatovs <rvolosatovs@riseup.net>
2023-03-06 17:24:21 -08:00

11 lines
234 B
TOML

[package]
name = "bindeps"
version = "0.1.0"
edition = "2021"
[dependencies]
foo = { workspace = true }
[workspace.dependencies]
foo = { path = "./foo", target = "wasm32-unknown-unknown", artifact = ["bin", "cdylib", "staticlib"] }