solp 0.8.2

Microsoft Visual Studio solution parsing library
Documentation
[package]
name = "solp"
description = "Microsoft Visual Studio solution parsing library"
repository = "https://github.com/aegoroff/solv"
version = "0.8.2"
authors = ["egoroff <egoroff@gmail.com>"]
edition = "2021"
license = "MIT"
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.20.0"

[dependencies]
lalrpop-util = "0.20.0"
jwalk = "0.8.1"
phf = { version = "0.11.1", features = ["macros"] }
itertools = "0.11"
petgraph = "0.6"
num_cpus = "1.15.0"
nom = "7"
serde = { version = "1.0.171", features = ["derive"] }
serde-xml-rs = "0.6.0"
anyhow = "1.0.71"

[dev-dependencies]
rstest = "0.18.1"
proptest = "1.2.0"

[package.metadata.generate-rpm]
assets = [
    { source = "target/x86_64-unknown-linux-musl/release/solv", dest = "/usr/bin/solv", mode = "0755" },
]