urd 0.1.0

Dialogue scripting language for games — compiler, VM, and static analysis
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "urd"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dialogue scripting language for games — compiler, VM, and static analysis"
readme = "README.md"
keywords = [
    "dialogue",
    "scripting",
    "gamedev",
    "visual-novel",
    "compiler",
]
categories = [
    "compilers",
    "game-development",
]
license = "MIT-0"
repository = "https://github.com/metdxt/urd"

[features]
spellcheck = [
    "dep:symspell",
    "dep:whatlang",
    "dep:ureq",
    "dep:dirs",
]
test-support = []

[lib]
name = "urd"
path = "src/lib.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"
required-features = ["test-support"]

[dependencies.ariadne]
version = "0.6.0"

[dependencies.chumsky]
version = "0.12.0"
features = ["pratt"]

[dependencies.dirs]
version = "6"
optional = true

[dependencies.fastrand]
version = "2"

[dependencies.log]
version = "0.4"

[dependencies.logos]
version = "0.16.1"

[dependencies.logos-display]
version = "0.1.3"

[dependencies.petgraph]
version = "0.8"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.symspell]
version = "0.5.2"
optional = true

[dependencies.thiserror]
version = "2.0.17"

[dependencies.urd-derive]
version = "0.1.0"

[dependencies.ureq]
version = "3"
optional = true

[dependencies.whatlang]
version = "0.18"
optional = true

[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"

[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"