Skip to content

Commit f87fe5f

Browse files
committed
build: add explicit binary configurations to Cargo.toml
Explicitly define the binary names and paths to ensure clarity when publishing to crates.io. This makes it clear that the package provides three binaries: rasm, rmon, and rdis.
1 parent a50e98a commit f87fe5f

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Cargo.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,18 @@ anyhow = "1.0.95"
1515
clap = { version = "4.5.27", features = ["derive"] }
1616
tempfile = "3.15.0"
1717

18+
[[bin]]
19+
name = "rasm"
20+
path = "src/bin/rasm.rs"
21+
22+
[[bin]]
23+
name = "rmon"
24+
path = "src/bin/rmon.rs"
25+
26+
[[bin]]
27+
name = "rdis"
28+
path = "src/bin/rdis.rs"
29+
1830
[dev-dependencies]
1931
assert_cmd = "2.0.16"
2032
claims = "0.7.1"

0 commit comments

Comments
 (0)