[[bin]]
name = "ptx-parser-bin"
path = "src/main.rs"
[dependencies.clap]
features = ["derive"]
version = "4.5"
[dependencies.logos]
version = "0.15.1"
[dependencies.ptx_90_parser_construct]
package = "ptx-90-parser-construct"
version = "0.1.0"
[dependencies.ptx_90_parser_span_derive]
package = "ptx-90-parser-span-derive"
version = "0.1.0"
[dependencies.stacker]
version = "0.1"
[dependencies.thiserror]
version = "1.0"
[lib]
name = "ptx_parser"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parser-implementations"]
description = "Parse NVIDIA PTX 9.0 assembly into a structured AST and explore modules via a CLI."
documentation = "https://docs.rs/ptx-90-parser"
edition = "2024"
exclude = [".cargo/**"]
homepage = "https://github.com/jialunzhang-psu/ptx-90-parser"
keywords = ["ptx", "cuda", "parser"]
license = "MIT"
name = "ptx-90-parser"
readme = "README.md"
repository = "https://github.com/jialunzhang-psu/ptx-90-parser"
version = "0.4.2"
[[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"