15 lines
446 B
TOML
15 lines
446 B
TOML
[package]
|
|
name = "source2rosetta-core"
|
|
version = "2.0.0"
|
|
edition = "2024"
|
|
description = "source2rosetta's deriver-free core: canonical gamedata model + format emitters (serde-only)"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://git.lo.sh/kamal/source2rosetta"
|
|
readme = "README.md"
|
|
authors = ["kamal"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
anyhow = "1"
|
|
clap = { version = "4", features = ["derive"] }
|