diff options
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" |
