Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ async-trait = "0.1"
bcs = "0.1"
chrono = { version = "0.4", default-features = false }
hyper = "1"
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v1.26.1" }
iota-sdk-types = { git = "https://github.com/iotaledger/iota-rust-sdk.git", rev = "36bffd625e1b1d38307eb9e49bd2cb7dd988bb11", default-features = false }
iota_interaction = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.22", default-features = false, package = "iota_interaction" }
iota_interaction_rust = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.22", default-features = false, package = "iota_interaction_rust" }
iota_interaction_ts = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.22", default-features = false, package = "iota_interaction_ts" }
product_common = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.22", default-features = false, package = "product_common" }
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v1.27.0" }
iota-sdk-types = { git = "https://github.com/iotaledger/iota-rust-sdk.git", rev = "ce81341ac3fdb7204df112182c68319f26d5896b", default-features = false }
iota_interaction = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.23", default-features = false, package = "iota_interaction" }
iota_interaction_rust = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.23", default-features = false, package = "iota_interaction_rust" }
iota_interaction_ts = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.23", default-features = false, package = "iota_interaction_ts" }
product_common = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.23", default-features = false, package = "product_common" }
secret-storage = { git = "https://github.com/iotaledger/secret-storage.git", tag = "v0.3.0", default-features = false }
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
serde-aux = { version = "4.7.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion audit-trail-move/sources/audit_trail.move
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use audit_trails::{
set_config,
set_delete_record_window,
set_delete_trail_lock,
set_write_lock
set_write_lock,
},
permission::{Self, Permission},
record::{Self, Record, InitialRecord},
Expand Down
2 changes: 1 addition & 1 deletion audit-trail-move/tests/capability_tests.move
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use audit_trails::{
Self,
setup_test_audit_trail,
fetch_capability_trail_and_clock,
cleanup_capability_trail_and_clock
cleanup_capability_trail_and_clock,
}
};
use iota::test_scenario::{Self as ts, Scenario};
Expand Down
2 changes: 1 addition & 1 deletion audit-trail-move/tests/create_audit_trail_tests.move
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use audit_trails::{
initial_time_for_testing,
fetch_capability_trail_and_clock,
cleanup_capability_trail_and_clock,
new_capability_for_address
new_capability_for_address,
}
};
use iota::{clock, test_scenario as ts};
Expand Down
2 changes: 1 addition & 1 deletion audit-trail-move/tests/locking_tests.move
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use audit_trails::{
initial_time_for_testing,
fetch_capability_trail_and_clock,
cleanup_capability_trail_and_clock,
cleanup_trail_and_clock
cleanup_trail_and_clock,
}
};
use iota::{clock, test_scenario as ts};
Expand Down
2 changes: 1 addition & 1 deletion audit-trail-move/tests/metadata_tests.move
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use audit_trails::{
Self,
setup_test_audit_trail,
fetch_capability_trail_and_clock,
cleanup_capability_trail_and_clock
cleanup_capability_trail_and_clock,
}
};
use iota::test_scenario as ts;
Expand Down
2 changes: 1 addition & 1 deletion audit-trail-move/tests/record_tests.move
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use audit_trails::{
initial_time_for_testing,
fetch_capability_trail_and_clock,
cleanup_capability_trail_and_clock,
cleanup_trail_and_clock
cleanup_trail_and_clock,
}
};
use iota::{clock, test_scenario as ts, vec_set};
Expand Down
2 changes: 1 addition & 1 deletion audit-trail-move/tests/role_tests.move
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use audit_trails::{
setup_test_audit_trail,
setup_test_audit_trail_with_tags,
fetch_capability_trail_and_clock,
cleanup_capability_trail_and_clock
cleanup_capability_trail_and_clock,
}
};
use iota::test_scenario as ts;
Expand Down
8 changes: 4 additions & 4 deletions bindings/wasm/audit_trail_wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ anyhow = "1.0.95"
audit_trails = { path = "../../../audit-trail-rs", default-features = false, features = ["gas-station", "default-http-client"] }
bcs = "0.1.6"
console_error_panic_hook = { version = "0.1" }
iota-sdk-types = { git = "https://github.com/iotaledger/iota-rust-sdk.git", rev = "36bffd625e1b1d38307eb9e49bd2cb7dd988bb11", default-features = false }
iota_interaction = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.22", default-features = false }
iota_interaction_ts = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.22" }
iota-sdk-types = { git = "https://github.com/iotaledger/iota-rust-sdk.git", rev = "ce81341ac3fdb7204df112182c68319f26d5896b", default-features = false }
iota_interaction = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.23", default-features = false }
iota_interaction_ts = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.23" }
js-sys = { version = "0.3.61" }
product_common = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.22", features = ["core-client", "transaction", "bindings", "binding-utils", "gas-station", "default-http-client"] }
product_common = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.23", features = ["core-client", "transaction", "bindings", "binding-utils", "gas-station", "default-http-client"] }
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.6.5"
tokio = { version = "1.49.0", default-features = false, features = ["sync"] }
Expand Down
8 changes: 4 additions & 4 deletions bindings/wasm/notarization_wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ async-trait = { version = "0.1", default-features = false }
bcs = "0.1.6"
console_error_panic_hook = { version = "0.1" }
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "69d496c71fb37e3d22fe85e5bbfd4256d61422b9", package = "fastcrypto" }
iota-sdk-types = { git = "https://github.com/iotaledger/iota-rust-sdk.git", rev = "36bffd625e1b1d38307eb9e49bd2cb7dd988bb11", default-features = false }
iota_interaction = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.22", default-features = false }
iota_interaction_ts = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.22" }
iota-sdk-types = { git = "https://github.com/iotaledger/iota-rust-sdk.git", rev = "ce81341ac3fdb7204df112182c68319f26d5896b", default-features = false }
iota_interaction = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.23", default-features = false }
iota_interaction_ts = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.23" }
js-sys = { version = "=0.3.85" }
prefix-hex = { version = "0.7", default-features = false }
serde = { version = "1.0", features = ["derive"] }
Expand All @@ -38,7 +38,7 @@ wasm-bindgen-futures = { version = "0.4", default-features = false }

[dependencies.product_common]
git = "https://github.com/iotaledger/product-core.git"
tag = "v0.8.22"
tag = "v0.8.23"
features = [
"core-client",
"transaction",
Expand Down
Loading