-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
72 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "rpmspec" | ||
description = "An RPM spec file parser" | ||
version = "0.4.0" | ||
authors = ["Fyra Labs <[email protected]>"] | ||
authors = ["Fyra Labs <[email protected]>", "madonuko <[email protected]>"] | ||
readme = "README.md" | ||
repository = "https://github.com/rpm-rs/rpmspec-rs" | ||
keywords = ["rpmspec", "rpm", "packaging"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,12 @@ | |
name = "rpmexpr" | ||
description = "A parser for %[RPM expressions]" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["Fyra Labs <[email protected]>"] | ||
authors = ["Fyra Labs <[email protected]>", "madonuko <[email protected]>"] | ||
readme = "README.md" | ||
repository = "https://github.com/rpm-rs/rpmspec-rs" | ||
keywords = ["rpmspec", "rpm", "packaging"] | ||
categories = ["parser-implementations", "parsing"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
@@ -15,7 +16,7 @@ license = "MIT" | |
chumsky = "0.9.2" | ||
# color-eyre = "0.6.2" | ||
parking_lot = "0.12.1" | ||
rpmspec-common = { path = "../rpmspec-common" } | ||
rpmspec-common = { version = "0.1.0", path = "../rpmspec-common" } | ||
smartstring = "1.0.1" | ||
thiserror = "1.0.50" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# rpmexpr | ||
|
||
This is an library for parsing `%["rpm expressions"]`, designed to be used with the `rpmspec` crate. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
[package] | ||
name = "rpmspec-common" | ||
description = "Helper structs and functions for the rpmspec/rpmexpr crate" | ||
version = "0.1.0" | ||
authors = ["Fyra Labs <[email protected]>", "madonuko <[email protected]>"] | ||
readme = "README.md" | ||
repository = "https://github.com/rpm-rs/rpmspec-rs" | ||
keywords = ["rpmspec", "rpm", "packaging"] | ||
categories = ["parser-implementations", "parsing"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# rpmspec-common | ||
|
||
This library contains utility structs, functions, etc. for the `rpmexpr` and `rpmspec` crates. | ||
|
||
Therefore, you are not supposed to directly list this crate as a dependency in your project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters