Skip to content

Commit

Permalink
remove solana-program from solana-feature-set (#3140)
Browse files Browse the repository at this point in the history
* remove solana-program from solana-feature-set

* fix log-analyzer deps which this PR somehow breaks

* add back Slot and Epoch aliases
  • Loading branch information
kevinheavey authored Oct 15, 2024
1 parent c234605 commit cc1873f
Show file tree
Hide file tree
Showing 6 changed files with 234 additions and 222 deletions.
7 changes: 6 additions & 1 deletion Cargo.lock

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

1 change: 1 addition & 0 deletions log-analyzer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ edition = { workspace = true }
byte-unit = { workspace = true }
clap = { version = "3.1.5", features = ["cargo"] }
serde = { workspace = true }
serde_derive = { workspace = true }
serde_json = { workspace = true }
solana-logger = { workspace = true }
solana-version = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion log-analyzer/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ extern crate byte_unit;
use {
byte_unit::Byte,
clap::{crate_description, crate_name, Arg, ArgMatches, Command},
serde::{Deserialize, Serialize},
serde_derive::{Deserialize, Serialize},
std::{collections::HashMap, fs, ops::Sub, path::PathBuf},
};

Expand Down
6 changes: 5 additions & 1 deletion programs/sbf/Cargo.lock

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

6 changes: 5 additions & 1 deletion sdk/feature-set/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,17 @@ edition = { workspace = true }

[dependencies]
lazy_static = { workspace = true }
solana-clock = { workspace = true }
solana-epoch-schedule = { workspace = true }
solana-frozen-abi = { workspace = true, optional = true, features = [
"frozen-abi",
] }
solana-frozen-abi-macro = { workspace = true, optional = true, features = [
"frozen-abi",
] }
solana-program = { workspace = true }
solana-hash = { workspace = true }
solana-pubkey = { workspace = true }
solana-sha256-hasher = { workspace = true }

[features]
frozen-abi = [
Expand Down
Loading

0 comments on commit cc1873f

Please sign in to comment.