diff options
author | Aria Shrimpton <me@aria.rip> | 2024-01-30 22:00:46 +0000 |
---|---|---|
committer | Aria Shrimpton <me@aria.rip> | 2024-01-30 22:00:46 +0000 |
commit | 947c712ae85e5300a84661ca74b1e85ad6c828ee (patch) | |
tree | 2102b40bd91d3d5148b09c7629a22c2fd701250e /src | |
parent | 3d79d3cfb1e785d3e06437e001de268b201185e0 (diff) |
rename back to candelabra-cli
Diffstat (limited to 'src')
-rw-r--r-- | src/Justfile | 2 | ||||
-rw-r--r-- | src/crates/cli/Cargo.toml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Justfile b/src/Justfile index 2b43947..92cbe11 100644 --- a/src/Justfile +++ b/src/Justfile @@ -1,4 +1,4 @@ -candelabra := `which candelabra 2>/dev/null || echo ./target/debug/candelabra` +candelabra := `which candelabra-cli 2>/dev/null || echo ./target/debug/candelabra-cli` target_dir := justfile_directory() / "target" tests_dir := justfile_directory() / "tests" tests_manifest := tests_dir / "Cargo.toml" diff --git a/src/crates/cli/Cargo.toml b/src/crates/cli/Cargo.toml index 69fc9c9..59d297e 100644 --- a/src/crates/cli/Cargo.toml +++ b/src/crates/cli/Cargo.toml @@ -2,7 +2,7 @@ name = "candelabra-cli" version = "0.1.0" edition = "2021" -default-run = "candelabra" +default-run = "candelabra-cli" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -17,5 +17,5 @@ cargo_metadata = "0.18.1" tabled = "0.14.0" [[bin]] -name = "candelabra" +name = "candelabra-cli" path = "src/main.rs" |