summaryrefslogtreecommitdiffstatshomepage
path: root/Cargo.toml
blob: f1d90183bf7d536de6635c0058da9bd68072c1c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "oneroll"
version = "1.0.2"
edition = "2021"
description = "A Pyo3 Project Template For HydroRoll."
license = "AGPL-3.0"
documentation = "https://oneroll.hydroroll.team/"
homepage = "https://hydroroll.team/"
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]
name = "_core"
crate-type = ["cdylib"]

[dependencies]
pest = "2.8.1"
pest_derive = "2.8.1"
pyo3 = { version = "0.19.2", features = ["abi3-py39"] }
rand = "0.9.2"
time = { version = "0.3.36", features = ["formatting", "macros", "local-offset"] }
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"