Skip to content

Commit 74fe93f

Browse files
committed
Changed package name to raftcli
1 parent 58d8f7f commit 74fe93f

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "raft"
2+
name = "raftcli"
33
version = "1.0.0"
44
authors = ["Rob Dobson <[email protected]>"]
55
license = "MIT"
@@ -12,6 +12,10 @@ repository = "https://github.com/robdobsn/RaftCLI"
1212
readme = "README.md"
1313
edition = "2021"
1414

15+
[[bin]]
16+
name = "raft"
17+
path = "src/main.rs"
18+
1519
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1620

1721
[dependencies]
@@ -22,13 +26,11 @@ serde = { version = "1.0.196", features = ["derive"] }
2226
serde_json = "1.0.113"
2327
dialoguer = "0.10"
2428
regex = "1.10.3"
25-
2629
tokio = { version = "1.36.0", features = ["full"] }
2730
tokio-serial = "5.4.4"
2831
tokio-util = { version = "0.7.10", features = ["codec"] }
2932
crossterm = "0.27.0"
3033
bytes = "1.5.0"
3134
futures = "0.3.21"
32-
3335
remove_dir_all = "0.8.2"
3436
chrono = "0.4.33"

0 commit comments

Comments
 (0)