Skip to content

Commit

Permalink
chore; move vendor name into env
Browse files Browse the repository at this point in the history
  • Loading branch information
AZProductions committed Sep 13, 2024
1 parent 6a37697 commit 5a4fc8c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ jobs = 1

[env]
SAMPLES = { value = "samples/", relative = true }
PKG_EMAIL = { value = "[email protected]" }
PKG_EMAIL = { value = "[email protected]" }
PKG_VENDOR = { value = "ZMANN" }
2 changes: 1 addition & 1 deletion crates/bells/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ impl Default for BellsParams {

impl Plugin for Bells {
const NAME: &'static str = "Bells";
const VENDOR: &'static str = "ZMANN";
const VENDOR: &'static str = env!("PKG_VENDOR");
const URL: &'static str = env!("CARGO_PKG_HOMEPAGE");
const EMAIL: &'static str = env!("PKG_EMAIL");

Expand Down
2 changes: 1 addition & 1 deletion crates/orchestron/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl Default for OrchestronParams {

impl Plugin for Orchestron {
const NAME: &'static str = "Orchestron";
const VENDOR: &'static str = "ZMANN";
const VENDOR: &'static str = env!("PKG_VENDOR");
const URL: &'static str = env!("CARGO_PKG_HOMEPAGE");
const EMAIL: &'static str = env!("PKG_EMAIL");

Expand Down

0 comments on commit 5a4fc8c

Please sign in to comment.