Skip to content

Commit

Permalink
fixed dev type and upgraded deps
Browse files Browse the repository at this point in the history
  • Loading branch information
cwkingjr committed Feb 11, 2024
1 parent 1b7c2f6 commit 4cf028f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ authors = ["Chuck King"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
csv = "1.2"
csv = "1.3"
counter = "0.5.7"
rand = "0.8.5"
serde = { version = "1", features = ["derive"] }
clap = { version = "4.4.0", features = ["derive"] }
anyhow = "1.0.75"
clap = { version = "4.5.0", features = ["derive"] }
anyhow = "1.0.79"

[dev-dependencies]
3 changes: 2 additions & 1 deletion develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ cargo build
cargo run -- --help
cargo run -- -u -i=./data/example-participants-with-groups.csv
cargo run -- -i=./data/example-participants-without-groups.csv
cargo run ./target/debug/gift_circle -u -i=./data/example-participants-with-groups.csv
./target/debug/gift_circle -u -i=./data/example-participants-with-groups.csv
./target/release/gift_circle -u -i=./data/example-participants-with-groups.csv
```

Once the gift_circle binary is moved into your path (e.g., /usr/bin/gift_circle), of course you may invoke it like this:
Expand Down

0 comments on commit 4cf028f

Please sign in to comment.