Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove path dependency
Browse files Browse the repository at this point in the history
afujiwara-roblox committed May 1, 2024
1 parent c57e712 commit f058103
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ default-members = [".", "artiaa_auth"]
[package]
name = "foreman"
description = "Toolchain manager for simple binary tools"
version = "1.6.1"
version = "1.6.2"
authors = [
"Lucien Greathouse <me@lpghatguy.com>",
"Matt Hargett <plaztiksyke@gmail.com>",
@@ -34,7 +34,7 @@ toml_edit = "0.14.4"
urlencoding = "2.1.0"
zip = "0.5"
url = "2.4.1"
artiaa_auth = { path = "./artiaa_auth" }
artiaa_auth = { path = "./artiaa_auth", version = "1.0.0" }
openssl = { version = "0.10.58", features = ["vendored"] }

[target.'cfg(windows)'.dependencies]
File renamed without changes.
2 changes: 1 addition & 1 deletion artiaa_auth/src/error.rs
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ impl ArtifactoryAuthError {
}
}

const ARTIFACTORY_AUTH_HELP: &str = include_str!("../../resources/artiaa-format.json");
const ARTIFACTORY_AUTH_HELP: &str = include_str!("../resources/artiaa-format.json");

impl fmt::Display for ArtifactoryAuthError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2 changes: 1 addition & 1 deletion artiaa_auth/src/lib.rs
Original file line number Diff line number Diff line change
@@ -55,7 +55,7 @@ mod test {
use serde_json::Value;
use tempfile::{tempdir, TempDir};

const SCHEMA: &str = include_str!("../../resources/artiaa-format.json");
const SCHEMA: &str = include_str!("../resources/artiaa-format.json");

const EXAMPLE_FILE: &str = r#"{
"tokens": {

0 comments on commit f058103

Please sign in to comment.