solp 0.5.13

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.5.13"
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.19"

[dependencies]
lalrpop-util = "0.19"
regex = "1"
jwalk = "0.6"
phf = { version = "0.11.1", features = ["macros"] }
itertools = "0.10"
petgraph = "0.6"
num_cpus = "1.13.1"
nom = "7"

[dev-dependencies]
rstest = "0.15.0"

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