solana/program-runtime/Cargo.toml

45 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "solana-program-runtime"
2023-01-31 15:48:33 -08:00
version = "1.16.0"
description = "Solana program runtime"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
documentation = "https://docs.rs/solana-program-runtime"
edition = "2021"
[dependencies]
base64 = "0.13"
bincode = "1.3.3"
eager = "0.1.0"
enum-iterator = "1.2.0"
itertools = "0.10.5"
libc = "0.2.101"
Bump libloading from 0.7.3 to 0.7.4 (#30216) Bumps [libloading](https://github.com/nagisa/rust_libloading) from 0.7.3 to 0.7.4. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nagisa/rust_libloading/commit/6e284984aee68cc2d1b7e7d5e7b5a2a2279cf8e3"><code>6e28498</code></a> Fix CI</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/95a0f62e8f52dc4f85921132588bfba7be18caf2"><code>95a0f62</code></a> Placate clippy</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/224a3def35b7aa68996768b58d0a0ebabb9f0533"><code>224a3de</code></a> Release 0.7.4</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/bd17713dcce4825b4969ef79b8b643eaee59a29f"><code>bd17713</code></a> Support AIX dyld constants</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/6e0792973615751136453e446b03444dc80f4e0b"><code>6e07929</code></a> fix typo</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/6b33651a90a88b22b8575bf9801cf77ab1ef4318"><code>6b33651</code></a> Construct a PathBuf</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/964dd8b4c0cdeb5a52854df1febe1aea49f17d50"><code>964dd8b</code></a> Simplify lib_path</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/8009f51a9fc95c06d34cf12cb3897791ecd9dc92"><code>8009f51</code></a> Honor Cargo's target directory when building LIBPATH</li> <li><a href="https://github.com/nagisa/rust_libloading/commit/842e377ae4c8c9ae21a208b845bba80bfc244b98"><code>842e377</code></a> Fix a typo in the CI scripts</li> <li>See full diff in <a href="https://github.com/nagisa/rust_libloading/compare/0.7.3...0.7.4">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=libloading&package-manager=cargo&previous-version=0.7.3&new-version=0.7.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com>
2023-02-09 09:53:18 -08:00
libloading = "0.7.4"
log = "0.4.17"
num-derive = { version = "0.3" }
num-traits = { version = "0.2" }
rand = "0.7.0"
serde = { version = "1.0.152", features = ["derive", "rc"] }
2023-01-31 15:48:33 -08:00
solana-frozen-abi = { path = "../frozen-abi", version = "=1.16.0" }
solana-frozen-abi-macro = { path = "../frozen-abi/macro", version = "=1.16.0" }
solana-measure = { path = "../measure", version = "=1.16.0" }
solana-metrics = { path = "../metrics", version = "=1.16.0" }
solana-sdk = { path = "../sdk", version = "=1.16.0" }
solana_rbpf = "=0.2.38"
thiserror = "1.0"
[dev-dependencies]
2023-01-31 15:48:33 -08:00
solana-logger = { path = "../logger", version = "=1.16.0" }
[lib]
crate-type = ["lib"]
name = "solana_program_runtime"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[build-dependencies]
rustc_version = "0.4"