Skip to content

Commit 8758ded

Browse files
committed
🐛 Add version dependendy in order to publish the crate
1 parent 6453ee7 commit 8758ded

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ bolt-system = { path = "programs/bolt-system", features = ["cpi"], version = "=0
3131
bolt-component = { path = "programs/bolt-component", features = ["cpi"], version = "=0.1.2"}
3232

3333
## External crates
34-
anchor-lang = { git = "https://github.com/coral-xyz/anchor.git", rev = "0f60909", features = ["init-if-needed"] }
35-
anchor-spl = { git = "https://github.com/coral-xyz/anchor.git", rev = "0f60909" }
34+
anchor-lang = { version = "0.29.0", git = "https://github.com/coral-xyz/anchor.git", rev = "0f60909", features = ["init-if-needed"] }
35+
anchor-spl = { version = "0.29.0", git = "https://github.com/coral-xyz/anchor.git", rev = "0f60909" }
3636
solana-security-txt = "1.1.1"
3737
tuple-conv = "1.0.1"
3838
syn = { version = "1.0.60", features = ["full"] }

cli/src/rust_template.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use std::path::{Path, PathBuf};
1212
// Anchor CLI version
1313
// TODO: use the stable version once the new IDL standard is released
1414
pub const ANCHOR_CLI_VERSION: &str =
15-
"{ git = \"https://github.com/coral-xyz/anchor.git\", rev = \"0f60909\" }";
15+
"{ git = { version = \"0.29.0\", \"https://github.com/coral-xyz/anchor.git\", rev = \"0f60909\" }";
1616
pub const TS_ANCHOR_VERSION: &str = "0.29.1";
1717

1818
/// Create a component from the given name.

0 commit comments

Comments
 (0)