this repo has no description

rename back to candelabra-cli

+4 -5
+1 -2
nix/candelabra.nix
··· 20 20 in 21 21 pkgs.runCommand "candelabra" {} '' 22 22 . ${pkgs.makeWrapper}/nix-support/setup-hook 23 - mkdir -p $out/{bin,nix-support} 24 - makeWrapper ${rustCrate}/bin/candelabra $out/bin/candelabra \ 23 + makeWrapper ${rustCrate}/bin/candelabra-cli $out/bin/candelabra-cli \ 25 24 --set CANDELABRA_SRC_DIR ${pkgs.lib.sourceByRegex ../src [ 26 25 ".*crates" 27 26 ".*racket_specs.*"
+1 -1
src/Justfile
··· 1 - candelabra := `which candelabra 2>/dev/null || echo ./target/debug/candelabra` 1 + candelabra := `which candelabra-cli 2>/dev/null || echo ./target/debug/candelabra-cli` 2 2 target_dir := justfile_directory() / "target" 3 3 tests_dir := justfile_directory() / "tests" 4 4 tests_manifest := tests_dir / "Cargo.toml"
+2 -2
src/crates/cli/Cargo.toml
··· 2 2 name = "candelabra-cli" 3 3 version = "0.1.0" 4 4 edition = "2021" 5 - default-run = "candelabra" 5 + default-run = "candelabra-cli" 6 6 7 7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 8 ··· 17 17 tabled = "0.14.0" 18 18 19 19 [[bin]] 20 - name = "candelabra" 20 + name = "candelabra-cli" 21 21 path = "src/main.rs"