Skip to content

Commit

Permalink
Merge pull request #94 from amphitheatre-app/dependabot/cargo/amp-com…
Browse files Browse the repository at this point in the history
…mon-v0.5.4

Bump amp-common from v0.5.3 to v0.5.4
  • Loading branch information
wangeguo authored Oct 31, 2023
2 parents d0a55f7 + b5ea57b commit d57e50e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions 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
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.6.8"
version = "0.6.9"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/amphitheatre-app/amphitheatre"
Expand All @@ -21,7 +21,7 @@ members = [
# https://doc.rust-lang.org/cargo/reference/workspaces.html#the-workspacedependencies-table
[workspace.dependencies]
anyhow = "1.0"
amp-common = { git = "https://github.com/amphitheatre-app/common", tag = "v0.5.3" }
amp-common = { git = "https://github.com/amphitheatre-app/common", tag = "v0.5.4" }
amp-resolver = { path = "resolver" }
amp-resources = { path = "resources" }
async-nats = "0.32.1"
Expand Down
2 changes: 1 addition & 1 deletion resolver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pub fn load_from_source(credentials: &Credentials, reference: &GitReference) ->
debug!("The `.amp.toml` content of {} is:\n{:?}", repo, data);

let manifest: Character = toml::from_str(data).map_err(ResolveError::TomlParseFailed)?;
Ok(CharacterSpec::from(manifest))
Ok(CharacterSpec::from(&manifest))
}

/// Load manifest from Kubernetes cluster and return the actor spec.
Expand Down

0 comments on commit d57e50e

Please sign in to comment.