Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
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
113 changes: 105 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
members = [
"avm",
"cli",
"cli/cli-macros",
"client",
"idl",
"lang",
Expand Down Expand Up @@ -62,6 +63,8 @@ solana-sysvar = "3.1.1"
solana-sysvar-id = "3.1.0"
solana-transaction = "3.0.1"

# Non solana crates
cargo_toml = "0.22.3"

[profile.release]
lto = true
Expand Down
2 changes: 1 addition & 1 deletion avm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ path = "src/main.rs"

[dependencies]
anyhow = "1.0.32"
cargo_toml = "0.19.2"
cargo_toml.workspace = true
cfg-if = "1.0.0"
chrono = "0.4"
clap = { version = "4.5.17", features = ["derive"] }
Expand Down
12 changes: 9 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,31 @@ dev = []
idl-localnet-testing = []

[dependencies]
anchor-cli-macros = { path = "cli-macros", version = "2.0.0" }
anchor-client = { path = "../client", version = "2.0.0" }
anchor-lang = { path = "../lang", version = "2.0.0" }
anchor-lang-idl = { path = "../idl", version = "0.1.2", features = ["build", "convert"] }
anyhow = "1.0.32"
base64 = "0.21"
bincode = "1.3.3"
bs58 = "0.5"
cargo_toml = "0.19.2"
cargo_metadata = "0.23.1"
cargo_toml.workspace = true
chrono = "0.4.19"
clap = { version = "4.5.17", features = ["derive"] }
clap_complete = "4.5.26"
console = "0.15"
dirs = "4.0"
ed25519-dalek = "2"
flate2 = "1.0.19"
heck = "0.4.0"
pathdiff = "0.2.0"
portpicker = "0.1.1"
regex = "1.8.3"
reqwest = { version = "0.11.4", default-features = false, features = ["multipart", "blocking", "rustls-tls"] }
reqwest = { version = "0.11.4", default-features = false, features = [
"multipart",
"blocking",
"rustls-tls",
] }
semver = "1.0.4"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0"
Expand Down
16 changes: 16 additions & 0 deletions cli/cli-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "anchor-cli-macros"
version.workspace = true
edition = "2024"
publish = true
repository = "https://github.com/solana-foundation/anchor"
description = "Macros used internally by the Anchor CLI"
license = "Apache-2.0"

[lib]
proc-macro = true

[dependencies]
quote = "1"
proc-macro2 = "1.0"
syn = "2.0"
Loading
Loading