Skip to content

Commit

Permalink
Merge pull request #190 from metaplex-foundation/chore/client-2.0
Browse files Browse the repository at this point in the history
Removing upper limit from client crate
  • Loading branch information
blockiosaurus authored Sep 4, 2024
2 parents 1012e6f + e976b45 commit 5afcfa1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-programs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,5 @@ jobs:
name: program-builds
# First wildcard ensures exported paths are consistently under the programs folder.
path: ./program*/.bin/*.so
include-hidden-files: true
if-no-files-found: error
24 changes: 12 additions & 12 deletions clients/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
[package]
name = "mpl-core"
description = "A flexible digital asset standard for Solana"
repository = "https://github.com/metaplex-foundation/mpl-core"
version = "0.8.0"
edition = "2021"
readme = "README.md"
license-file = "../../LICENSE"
name = "mpl-core"
readme = "README.md"
repository = "https://github.com/metaplex-foundation/mpl-core"
version = "0.8.0"

[lib]
crate-type = ["cdylib", "lib"]

[features]
test-sbf = []
serde = ["dep:serde", "dep:serde_with"]
anchor = ["dep:anchor-lang"]
serde = ["dep:serde", "dep:serde_with"]
test-sbf = []

[dependencies]
anchor-lang = { version = "0.30.0", optional = true }
base64 = "0.22.0"
borsh = "^0.10"
modular-bitfield = "0.11.2"
num-derive = "^0.3"
num-traits = "^0.2"
rmp-serde = "1.0"
serde = { version = "^1.0", features = ["derive"], optional = true }
serde_json = "1.0"
serde_with = { version = "^3.0", optional = true }
solana-program = "> 1.14, < 1.19"
solana-program = "> 1.14"
thiserror = "^1.0"
base64 = "0.22.0"
anchor-lang = { version = "0.30.0", optional = true }
modular-bitfield = "0.11.2"

[dev-dependencies]
assert_matches = "1.5.0"
solana-program-test = "> 1.14, < 1.19"
solana-sdk = "> 1.14, < 1.19"
solana-program-test = "> 1.14"
solana-sdk = "> 1.14"

0 comments on commit 5afcfa1

Please sign in to comment.