Merge pull request #480 from hannobraun/export

Rename `validator` to `export-validator`
This commit is contained in:
Hanno Braun 2022-04-14 13:34:28 +02:00 committed by GitHub
commit be54249708
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 11 additions and 11 deletions

View File

@ -91,4 +91,4 @@ jobs:
- uses: actions-rs/cargo@4ff6ec2846f6e7217c1a9b0b503506665f134c4b - uses: actions-rs/cargo@4ff6ec2846f6e7217c1a9b0b503506665f134c4b
with: with:
command: run command: run
args: --package validator args: --package export-validator

14
Cargo.lock generated
View File

@ -639,6 +639,13 @@ dependencies = [
"termcolor", "termcolor",
] ]
[[package]]
name = "export-validator"
version = "0.1.0"
dependencies = [
"anyhow",
]
[[package]] [[package]]
name = "faccess" name = "faccess"
version = "0.2.4" version = "0.2.4"
@ -2789,13 +2796,6 @@ dependencies = [
"percent-encoding", "percent-encoding",
] ]
[[package]]
name = "validator"
version = "0.1.0"
dependencies = [
"anyhow",
]
[[package]] [[package]]
name = "valuable" name = "valuable"
version = "0.1.0" version = "0.1.0"

View File

@ -16,8 +16,8 @@ members = [
"models/spacer", "models/spacer",
"models/star", "models/star",
"tools/export-validator",
"tools/release-operator", "tools/release-operator",
"tools/validator",
] ]
default-members = [ default-members = [
"crates/fj-app", "crates/fj-app",

View File

@ -1,5 +1,5 @@
[package] [package]
name = "validator" name = "export-validator"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
publish = false publish = false

View File

@ -1,3 +1,3 @@
# Validator # Export Validator
Used by the CI build to export (and in the future, validate) 3MF files. Used by the CI build to export (and in the future, validate) 3MF files.