Skip to content

Commit cc1873f

Browse files
authored
remove solana-program from solana-feature-set (anza-xyz#3140)
* remove solana-program from solana-feature-set * fix log-analyzer deps which this PR somehow breaks * add back Slot and Epoch aliases
1 parent c234605 commit cc1873f

File tree

6 files changed

+234
-222
lines changed

6 files changed

+234
-222
lines changed

Cargo.lock

+6-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

log-analyzer/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ edition = { workspace = true }
1313
byte-unit = { workspace = true }
1414
clap = { version = "3.1.5", features = ["cargo"] }
1515
serde = { workspace = true }
16+
serde_derive = { workspace = true }
1617
serde_json = { workspace = true }
1718
solana-logger = { workspace = true }
1819
solana-version = { workspace = true }

log-analyzer/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ extern crate byte_unit;
44
use {
55
byte_unit::Byte,
66
clap::{crate_description, crate_name, Arg, ArgMatches, Command},
7-
serde::{Deserialize, Serialize},
7+
serde_derive::{Deserialize, Serialize},
88
std::{collections::HashMap, fs, ops::Sub, path::PathBuf},
99
};
1010

programs/sbf/Cargo.lock

+5-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/feature-set/Cargo.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@ edition = { workspace = true }
1111

1212
[dependencies]
1313
lazy_static = { workspace = true }
14+
solana-clock = { workspace = true }
15+
solana-epoch-schedule = { workspace = true }
1416
solana-frozen-abi = { workspace = true, optional = true, features = [
1517
"frozen-abi",
1618
] }
1719
solana-frozen-abi-macro = { workspace = true, optional = true, features = [
1820
"frozen-abi",
1921
] }
20-
solana-program = { workspace = true }
22+
solana-hash = { workspace = true }
23+
solana-pubkey = { workspace = true }
24+
solana-sha256-hasher = { workspace = true }
2125

2226
[features]
2327
frozen-abi = [

0 commit comments

Comments
 (0)