Skip to content

Commit

Permalink
Merge pull request #183 from DanielVoogsgerd/main-package
Browse files Browse the repository at this point in the history
chore: Remove meta package
  • Loading branch information
Lut99 authored Nov 25, 2024
2 parents 95537d3 + f3efdf7 commit 017c0c9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 36 deletions.
4 changes: 0 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 0 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,3 @@ error-trace = { git = "https://github.com/Lut99/error-trace-rs", tag = "v3.0.0"
transform = { git = "https://github.com/Lut99/transform-rs", tag = "v0.2.0" }
names = { git = "https://github.com/Lut99/names-rs", tag = "v0.1.0", default-features = false, features = [ "rand", "three-lowercase" ]}
download = { git = "https://github.com/Lut99/download-rs", tag = "v0.1.0", default-features = false, features = ["download"] }

[package]
name = "brane-meta"
edition = "2021"
rust-version = "1.74"
version.workspace = true
repository.workspace = true
license.workspace = true

[lints.clippy]
result_large_err = { level = "allow", priority = 1 }
2 changes: 1 addition & 1 deletion brane-ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "brane-ast"
rust-version = "1.67.1"
rust-version = "1.73.0"
edition = "2021"
authors = [ "Tim Müller" ]
version.workspace = true
Expand Down
8 changes: 5 additions & 3 deletions ci-cd/msrv
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ shopt -s globstar

ret=0
echo "Running Cargo MSRV on the entire workspace"
for file in $(tomlq -r < Cargo.toml .workspace.members.[]); do
echo "::group::${file}"
if ! cargo msrv verify --output-format json --manifest-path "$file"; then
for dir in $(tomlq -r < Cargo.toml .workspace.members.[]); do
echo "::group::${dir}"
pushd $dir
if ! cargo msrv verify --output-format json; then
ret=1
fi
popd
echo "::endgroup::"
done

Expand Down
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ allow = [
"CC0-1.0",
"CC-PDDC",
"OpenSSL",
"Unicode-3.0",
"Unicode-DFS-2016",
"Zlib",
]
Expand Down
17 changes: 0 additions & 17 deletions src/main.rs

This file was deleted.

0 comments on commit 017c0c9

Please sign in to comment.