A blackjack engine for Rust.
To build the project, run cargo build
in the project's root directory.
To build project documentation, run cargo doc
in the project's root directory.
Generated documentation will be available at /target/doc/twentyone/index.html
.
To add this project as a dependency via crates.io, add the following
to your Cargo.toml
dependencies:
toml
[dependencies]
twentyone = "0.1"
To add this project as a dependency via the git repository,
add the following to your Cargo.toml
dependencies:
toml
[dependencies]
twentyone = { git = "https://github.com/MysteryBlokHed/twentyone" }
After building this project, to add it as a dependency elsewhere,
add the following to your Cargo.toml
dependencies:
toml
[dependencies]
twentyone = { path = "/path/to/build/location" }
Documentation is available at https://docs.rs/twentyone/.
This project is licensed under the Apache License, Version 2.0 (LICENSE or https://www.apache.org/licenses/LICENSE-2.0).