Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 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 docs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ version = "0.1.0"
edition = "2021"

[dependencies]
miden-client = { version = "0.10", features = ["testing", "tonic", "sqlite"] }
miden-lib = { version = "0.10", default-features = false }
miden-objects = { version = "0.10", default-features = false }
miden-crypto = { version = "0.15.0", features = ["executable"] }
miden-assembly = "0.15.0"
miden-client = { version = "0.11.2", features = ["testing", "tonic", "sqlite"] }
miden-lib = { version = "0.11.1", default-features = false }
miden-objects = { version = "0.11.1", default-features = false, features = ["testing"] }
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can stick to minor versions here and remove the patch version

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@partylikeits1983 since I just saw this: chore: bump versions and update to testnet

if we remove patch versions (i.e. keep { version = "0.11", ... }, then the latest version will be fetched for new users (and if you already have a local Cargo.lock, running cargo update will bring you up to the latest patch)

miden-crypto = { version = "0.15.9", features = ["executable"] }
miden-assembly = "0.17.0"
rand = { version = "0.9" }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1.0", features = ["raw_value"] }
tokio = { version = "1.40", features = ["rt-multi-thread", "net", "macros"] }
tokio = { version = "1.46", features = ["rt-multi-thread", "net", "macros", "fs"] }
rand_chacha = "0.9.0"
2 changes: 1 addition & 1 deletion docs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
#![doc = include_str!("rust-client/mappings_in_masm_how_to.md")]
#![doc = include_str!("rust-client/creating_notes_in_masm_tutorial.md")]
#![doc = include_str!("rust-client/delegated_proving_tutorial.md")]
#![doc = include_str!("rust-client/network_transactions_tutorial.md")]
#![doc = include_str!("rust-client/network_transactions_tutorial.md")]
Loading