]> git.scottworley.com Git - pluta-lesnura/log
pluta-lesnura
11 months agoMain game logic
Scott Worley [Mon, 17 Jul 2023 20:25:40 +0000 (13:25 -0700)]
Main game logic

11 months agoHands
Scott Worley [Mon, 17 Jul 2023 05:46:07 +0000 (22:46 -0700)]
Hands

11 months agoLibrary, drawing, & recycling discard pile
Scott Worley [Mon, 17 Jul 2023 05:27:58 +0000 (22:27 -0700)]
Library, drawing, & recycling discard pile

11 months agoNUM_ usize
Scott Worley [Fri, 14 Jul 2023 01:37:27 +0000 (18:37 -0700)]
NUM_ usize

11 months ago1-based rank value
Scott Worley [Fri, 14 Jul 2023 01:08:17 +0000 (18:08 -0700)]
1-based rank value

11 months agoAdd jokers
Scott Worley [Thu, 13 Jul 2023 19:24:56 +0000 (12:24 -0700)]
Add jokers

11 months agoDeck
Scott Worley [Thu, 13 Jul 2023 19:20:27 +0000 (12:20 -0700)]
Deck

11 months agoHooks should not require network access
Scott Worley [Fri, 14 Jul 2023 00:45:22 +0000 (17:45 -0700)]
Hooks should not require network access

11 months agoPathLengthInfo
Scott Worley [Thu, 13 Jul 2023 19:02:47 +0000 (12:02 -0700)]
PathLengthInfo

11 months agogit pre-commit hook
Scott Worley [Thu, 13 Jul 2023 18:53:23 +0000 (11:53 -0700)]
git pre-commit hook

11 months agoBegin
Scott Worley [Thu, 13 Jul 2023 16:57:34 +0000 (09:57 -0700)]
Begin

On dashes vs. underscores in crate names:

The Rust Book says dashes: "$ cargo new my-project"
https://doc.rust-lang.org/book/ch07-01-packages-and-crates.html

Rust RFC 430 says underscores: "Crates: snake_case (but prefer single word)"
https://github.com/rust-lang/rfcs/blob/master/text/0430-finalizing-naming-conventions.md

Rust API Guidelines says ¯\_(ツ)_/¯: "Crates: unclear"
https://rust-lang.github.io/api-guidelines/naming.html
with a link to https://github.com/rust-lang/api-guidelines/issues/29

So I guess we're going with dashes.