[package]
edition = "2024"
name = "ptx-90-parser"
version = "0.4.4"
build = false
exclude = [".cargo/**"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parse NVIDIA PTX 9.0 assembly into a structured AST and explore modules via a CLI."
homepage = "https://github.com/jialunzhang-psu/ptx-90-parser"
documentation = "https://docs.rs/ptx-90-parser"
readme = "README.md"
keywords = [
"ptx",
"cuda",
"parser",
]
categories = ["parser-implementations"]
license = "MIT"
repository = "https://github.com/jialunzhang-psu/ptx-90-parser"
[lib]
name = "ptx_parser"
path = "src/lib.rs"
[[bin]]
name = "ptx-parser-bin"
path = "src/main.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "function"
path = "tests/function.rs"
[[test]]
name = "instruction"
path = "tests/instruction.rs"
[[test]]
name = "instruction_with_pred"
path = "tests/instruction_with_pred.rs"
[[test]]
name = "lexer"
path = "tests/lexer.rs"
[[test]]
name = "mini_step64"
path = "tests/mini_step64.rs"
[[test]]
name = "module"
path = "tests/module.rs"
[[test]]
name = "pretty_print"
path = "tests/pretty_print.rs"
[[test]]
name = "util"
path = "tests/util.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.logos]
version = "0.15.1"
[dependencies.ptx_90_parser_construct]
version = "0.1.0"
package = "ptx-90-parser-construct"
[dependencies.ptx_90_parser_span_derive]
version = "0.1.0"
package = "ptx-90-parser-span-derive"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.stacker]
version = "0.1"
[dependencies.thiserror]
version = "1.0"