diff --git a/examples/rust-hello-multibin/Cargo.toml b/examples/rust-hello-multibin/Cargo.toml index c0f4eb64..4056a212 100644 --- a/examples/rust-hello-multibin/Cargo.toml +++ b/examples/rust-hello-multibin/Cargo.toml @@ -17,4 +17,7 @@ test = true name = "bye" required-features = ["some"] +[[bin]] +name = "rust-hello-multibin" + [dependencies] diff --git a/examples/rust-hello-multibin/src/main.rs b/examples/rust-hello-multibin/src/main.rs new file mode 100644 index 00000000..fb7ae0c6 --- /dev/null +++ b/examples/rust-hello-multibin/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, multibin!"); +}