-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Rename solana_program_interface to solana_sdk #1609
Conversation
63093e6
to
d952368
Compare
Cargo.toml
Outdated
noop = { path = "programs/native/noop" } | ||
bpf_loader = { path = "programs/native/bpf_loader" } | ||
lua_loader = { path = "programs/native/lua_loader" } | ||
solana-program-native-noop = { path = "programs/native/noop" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does 'program' really need to be in there?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess not, I'll remove it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm thinking native
could go away too. Why would the choice of interpreter leak into the package name?
Cargo.toml
Outdated
bpf_loader = { path = "programs/native/bpf_loader" } | ||
lua_loader = { path = "programs/native/lua_loader" } | ||
solana-program-native-noop = { path = "programs/native/noop" } | ||
solana-program-native-bpf_loader = { path = "programs/native/bpf_loader" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The mix of hyphens and underscores is quite ugly. I'd prefer all hyphens, but wouldn't be opposed to all underscores.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did that because with solana-program-native-bpf-loader
we lose the difference between
programs/native/
and bpf_loader
. Don't care?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bpfloader
?
How about now? |
) Bumps [@solana/web3.js](https://github.com/solana-labs/solana-web3.js) from 1.2.7 to 1.4.0. - [Release notes](https://github.com/solana-labs/solana-web3.js/releases) - [Changelog](https://github.com/solana-labs/solana-web3.js/blob/master/.releaserc.json) - [Commits](solana-labs/solana-web3.js@v1.2.7...v1.4.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Make validator::new return ValidatorError. * Try switching to anyhow and thiserror. * Switch to matches! on error matching.
cc: #1542