[package]
edition = "2024"
rust-version = "1.95"
name = "rdice-core"
version = "0.1.1"
build = false
include = [
"src/**",
"tests/**",
"Cargo.toml",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reusable dice, tray, expression parsing, rolling, and analysis primitives"
homepage = "https://github.com/nilzx/rdice"
documentation = "https://docs.rs/rdice-core"
readme = "README.md"
keywords = [
"dice",
"roller",
"random",
"tabletop",
"ttrpg",
]
categories = [
"games",
"parsing",
]
license = "MIT"
repository = "https://github.com/nilzx/rdice"
[lib]
name = "rdice_core"
path = "src/lib.rs"
[[test]]
name = "engine_test"
path = "tests/engine_test.rs"
[[test]]
name = "expr_test"
path = "tests/expr_test.rs"
[dependencies.rand]
version = "0.10.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"