23 lines
623 B
TOML
23 lines
623 B
TOML
[package]
|
|
name = "source2rosetta"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Locate Source-2 engine functions (gamedata signatures/offsets) across Valve builds"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://git.lo.sh/kamal/source2rosetta"
|
|
readme = "README.md"
|
|
authors = ["kamal"]
|
|
|
|
[workspace]
|
|
members = ["crates/source2rosetta-core"]
|
|
|
|
[dependencies]
|
|
source2rosetta-core = { path = "crates/source2rosetta-core" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
anyhow = "1"
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
memchr = "2"
|
|
iced-x86 = "1"
|
|
cpp_demangle = "0.5.1"
|
|
libc = "0.2.186"
|