Skip to content

Commit

Permalink
🐛 Add version dependendy in order to publish the crate
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielePicco committed Apr 2, 2024
1 parent 6453ee7 commit 8758ded
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ bolt-system = { path = "programs/bolt-system", features = ["cpi"], version = "=0
bolt-component = { path = "programs/bolt-component", features = ["cpi"], version = "=0.1.2"}

## External crates
anchor-lang = { git = "https://github.com/coral-xyz/anchor.git", rev = "0f60909", features = ["init-if-needed"] }
anchor-spl = { git = "https://github.com/coral-xyz/anchor.git", rev = "0f60909" }
anchor-lang = { version = "0.29.0", git = "https://github.com/coral-xyz/anchor.git", rev = "0f60909", features = ["init-if-needed"] }
anchor-spl = { version = "0.29.0", git = "https://github.com/coral-xyz/anchor.git", rev = "0f60909" }
solana-security-txt = "1.1.1"
tuple-conv = "1.0.1"
syn = { version = "1.0.60", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion cli/src/rust_template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use std::path::{Path, PathBuf};
// Anchor CLI version
// TODO: use the stable version once the new IDL standard is released
pub const ANCHOR_CLI_VERSION: &str =
"{ git = \"https://github.com/coral-xyz/anchor.git\", rev = \"0f60909\" }";
"{ git = { version = \"0.29.0\", \"https://github.com/coral-xyz/anchor.git\", rev = \"0f60909\" }";
pub const TS_ANCHOR_VERSION: &str = "0.29.1";

/// Create a component from the given name.
Expand Down

0 comments on commit 8758ded

Please sign in to comment.