[package] name = "solp" description = "Microsoft Visual Studio solution parsing library" repository = "https://github.com/aegoroff/solv" version = "0.16.6" authors = ["egoroff "] edition = "2021" license = "MIT" readme = "README.md" keywords = ["sln", "visualstudio", "parser", "microsoft", "solution"] workspace = ".." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [build-dependencies] # <-- We added this and everything after! lalrpop = "=0.22.0" [dependencies] lalrpop-util = "=0.22.0" jwalk = "=0.8.1" phf = { version = "=0.11.2", features = ["macros"] } itertools = "=0.13.0" num_cpus = "=1.16.0" nom = "=7.1.3" serde = { version = "=1.0.215", features = ["derive"] } serde-xml-rs = "=0.6.0" color-eyre = "=0.6.3" [dev-dependencies] rstest = "=0.23.0" proptest = "=1.5.0" [lints] workspace = true