chore: rename project and lib crate

This commit is contained in:
2025-11-15 16:51:06 +01:00
parent 07a2913c76
commit c6018d7199
25 changed files with 4 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
[[package]] [[package]]
name = "oxydice_lib" name = "oxidice_lib"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"rand", "rand",

View File

@@ -1,3 +1,3 @@
[workspace] [workspace]
resolver = "3" resolver = "3"
members = ["oxydice_lib"] members = ["oxidice_lib"]

View File

@@ -1,5 +1,5 @@
[package] [package]
name = "oxydice_lib" name = "oxidice_lib"
version = "0.1.0" version = "0.1.0"
edition = "2024" edition = "2024"

View File

@@ -1,4 +1,4 @@
use oxydice_lib::dice::*; use oxidice_lib::dice::*;
fn main() -> Result<(), FailedTo>{ fn main() -> Result<(), FailedTo>{
let str = Dice::grab(3, 6).roll().sum()?; let str = Dice::grab(3, 6).roll().sum()?;