Skip to content

Commit

Permalink
chore: add versions to all crate dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
PsychoPunkSage authored and metaclips committed Aug 1, 2024
1 parent ca44410 commit 18b6704
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
8 changes: 4 additions & 4 deletions implementations/rust/ockam/ockam_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ tracing-subscriber = { version = "0.3.18", features = ["json"] }
url = "2.5.2"

ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.57.0", features = ["cbor", "serde"] }
ockam_transport_core = { path = "../ockam_transport_core" }
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.87.0" }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.120.0", default-features = false, features = ["std"] }
tonic = "0.11"

Expand Down Expand Up @@ -155,9 +155,9 @@ hex = "0.4.3"
indexmap = "2.2.6"
mockall = "0.12"
multimap = "0.10.0"
ockam_macros = { path = "../ockam_macros", features = ["std"] }
ockam_transport_core = { path = "../ockam_transport_core" }
ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false }
ockam_macros = { path = "../ockam_macros", features = ["std"], version = "^0.34.0" }
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.87.0" }
ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false, version = "^0.120.0" }
once_cell = { version = "1", default-features = false }
opentelemetry_sdk = { version = "0.23.0", features = ["logs", "metrics", "trace", "rt-tokio", "testing"], default-features = false }
pretty_assertions = "1.4.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
8 changes: 4 additions & 4 deletions implementations/rust/ockam/ockam_rust_elixir_nifs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ rust-crypto = ["ockam_vault/rust-crypto"]
hex = { version = "0.4", default-features = false }
lazy_static = "1.5.0"
minicbor = { version = "0.24.1", features = ["alloc", "derive"] }
ockam_core = { path = "../ockam_core", default-features = false, features = ["std"] }
ockam_identity = { path = "../ockam_identity", default-features = false, features = ["std", "software_vault"] }
ockam_vault = { path = "../ockam_vault", default-features = false, features = ["std", "storage"] }
ockam_vault_aws = { path = "../ockam_vault_aws" }
ockam_core = { path = "../ockam_core", default-features = false, features = ["std"], version = "^0.113.0" }
ockam_identity = { path = "../ockam_identity", default-features = false, features = ["std", "software_vault"], version = "^0.117.0" }
ockam_vault = { path = "../ockam_vault", default-features = false, features = ["std", "storage"], version = "^0.115.0" }
ockam_vault_aws = { path = "../ockam_vault_aws", version = "^0.41.0" }
# Enable credentials-sso feature in ockam_vault_aws for use on sso environments (like dev machines)
rustler = "0.33.0"
time = "0.3.36"
Expand Down

0 comments on commit 18b6704

Please sign in to comment.