Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

chore: workspace inheritance #30939

Merged
merged 16 commits into from
Mar 29, 2023
Prev Previous commit
Next Next commit
programs/sbf/rust/big_mod_exp/Cargo.toml
  • Loading branch information
yihau committed Mar 28, 2023
commit 86db5d167963d07e4726cc04b810dccfb6efc4b0
22 changes: 11 additions & 11 deletions programs/sbf/rust/big_mod_exp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "solana-bpf-rust-big-mod-exp"
version = "1.16.0"
description = "Solana BPF test program written in Rust"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solanalabs.com/"
documentation = "https://docs.rs/solana-bpf-rust-big-mod-exp"
edition = "2021"
version = { workspace = true }
description = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
edition = { workspace = true }

[dependencies]
array-bytes = "=1.4.1"
serde = { version = "1.0.112", features = ["derive"] }
serde_json = "1.0.56"
Comment on lines -14 to -15
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

both of these will be updated by moving to the workspace version. probably not a problem, just wanted to raise

solana-program = { path = "../../../../sdk/program", version = "=1.16.0" }
array-bytes = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
solana-program = { workspace = true }

[lib]
crate-type = ["cdylib"]
Expand Down