From b3a045490d025eb986364f85875375790e7610fa Mon Sep 17 00:00:00 2001 From: Mikhail Zabaluev Date: Thu, 5 Dec 2024 15:19:41 -0800 Subject: [PATCH 1/2] deps: Update to bcs from crates.io All changes in the aptos-core fork have been merged upstream. --- rust/Cargo.lock | 5 +++-- rust/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index f0acfb090..6083a61a5 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -354,8 +354,9 @@ dependencies = [ [[package]] name = "bcs" -version = "0.1.4" -source = "git+https://github.com/aptos-labs/bcs.git?rev=d31fab9d81748e2594be5cd5cdf845786a30562d#d31fab9d81748e2594be5cd5cdf845786a30562d" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85b6598a2f5d564fb7855dc6b06fd1c38cff5a72bd8b863a4d021938497b440a" dependencies = [ "serde", "thiserror", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index a5e9fb0bb..7ce971792 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -26,7 +26,7 @@ async-trait = "0.1.53" backtrace = "0.3.58" base64 = "0.13.0" bb8 = "0.8.1" -bcs = { git = "https://github.com/aptos-labs/bcs.git", rev = "d31fab9d81748e2594be5cd5cdf845786a30562d" } +bcs = "0.1.6" bigdecimal = { version = "0.4.0", features = ["serde"] } bitflags = "2.5.0" chrono = { version = "0.4.19", features = ["clock", "serde"] } From 00132c0d205a7a49f54f10842bcdbaabc503dca0 Mon Sep 17 00:00:00 2001 From: Mikhail Zabaluev Date: Thu, 12 Dec 2024 14:17:53 -0800 Subject: [PATCH 2/2] deps: switch to movement bcs fork It's not needed for anything in this crate, but we'll harmonize dependencies for Movement. --- rust/Cargo.lock | 3 +-- rust/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 6083a61a5..9197a0c71 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -355,8 +355,7 @@ dependencies = [ [[package]] name = "bcs" version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85b6598a2f5d564fb7855dc6b06fd1c38cff5a72bd8b863a4d021938497b440a" +source = "git+https://github.com/movementlabsxyz/bcs.git?rev=bc16d2d39cabafaabd76173dd1b04b2aa170cf0c#bc16d2d39cabafaabd76173dd1b04b2aa170cf0c" dependencies = [ "serde", "thiserror", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 7ce971792..39246e103 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -26,7 +26,7 @@ async-trait = "0.1.53" backtrace = "0.3.58" base64 = "0.13.0" bb8 = "0.8.1" -bcs = "0.1.6" +bcs = { git = "https://github.com/movementlabsxyz/bcs.git", rev = "bc16d2d39cabafaabd76173dd1b04b2aa170cf0c" } bigdecimal = { version = "0.4.0", features = ["serde"] } bitflags = "2.5.0" chrono = { version = "0.4.19", features = ["clock", "serde"] }