diff options
| author | 2025-09-12 04:02:02 +0800 | |
|---|---|---|
| committer | 2025-09-12 04:02:02 +0800 | |
| commit | 0288d0956330d5ac8db48b752240f723e8703929 (patch) | |
| tree | 0297dee9f8166af0a856dd3a1057ad5f25f14c6a /Cargo.toml | |
| parent | 5135876b5e2a6c40232414ea0b7eb875fa225cf0 (diff) | |
| download | OneRoll-0288d0956330d5ac8db48b752240f723e8703929.tar.gz OneRoll-0288d0956330d5ac8db48b752240f723e8703929.zip | |
feat: initial basic roll features
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 19 |
1 files changed, 12 insertions, 7 deletions
@@ -1,13 +1,13 @@ [package] -name = "pyo3_template" -version = "0.0.1" +name = "oneroll" +version = "1.0.1" edition = "2021" description = "A Pyo3 Project Template For HydroRoll." -license = "MIT" -documentation = "https://{project}.hydroroll.team/" +license = "AGPL-3.0" +documentation = "https://oneroll.hydroroll.team/" homepage = "https://hydroroll.team/" -repository = "https://github.com/HydroRoll-Team/{project}" -authors = ["yourname"] +repository = "https://github.com/HydroRoll-Team/oneroll" +authors = ["HsiangNianian"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] @@ -15,5 +15,10 @@ name = "_core" crate-type = ["cdylib"] [dependencies] +pest = "2.8.1" +pest_derive = "2.8.1" pyo3 = { version = "0.19.2", features = ["abi3-py39"] } -time = { version = "0.3.36", features = ["formatting", "macros", "local-offset"] }
\ No newline at end of file +rand = "0.9.2" +time = { version = "0.3.36", features = ["formatting", "macros", "local-offset"] } +serde = { version = "1.0", features = ["derive"] } +thiserror = "1.0" |
