* change untar to use unpack instead of unpack_in (#19216)
* change untar to use unpack instead of unpack_in
* hacky, but maybe passes tests
* chore: bump tar from 0.4.35 to 0.4.37
Bumps [tar](https://github.com/alexcrichton/tar-rs) from 0.4.35 to 0.4.37.
- [Release notes](https://github.com/alexcrichton/tar-rs/releases)
- [Commits](https://github.com/alexcrichton/tar-rs/compare/0.4.35...0.4.37)
---
updated-dependencies:
- dependency-name: tar
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
* [auto-commit] Update all Cargo lock files
* cleanup
* cleanup, add validate_inside_dst
* collapse use
Co-authored-by: Tyera Eulberg <teulberg@gmail.com>
* delete comment line
* add comments
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com>
Co-authored-by: Tyera Eulberg <teulberg@gmail.com>
(cherry picked from commit 89a31ff473
)
# Conflicts:
# Cargo.lock
# download-utils/Cargo.toml
# install/Cargo.toml
# programs/bpf/Cargo.lock
# runtime/Cargo.toml
# sdk/cargo-build-bpf/Cargo.toml
* Fix conflicts
Co-authored-by: Jeff Washington (jwash) <75863576+jeffwashington@users.noreply.github.com>
Co-authored-by: Tyera Eulberg <tyera@solana.com>
27 lines
675 B
TOML
27 lines
675 B
TOML
[package]
|
|
name = "solana-cargo-build-bpf"
|
|
version = "1.7.11"
|
|
description = "Compile a local package and all of its dependencies using the Solana BPF SDK"
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
|
repository = "https://github.com/solana-labs/solana"
|
|
homepage = "https://solana.com/"
|
|
license = "Apache-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
bzip2 = "0.3.3"
|
|
clap = "2.33.3"
|
|
regex = "1.4.5"
|
|
cargo_metadata = "0.12.0"
|
|
solana-sdk = { path = "..", version = "=1.7.11" }
|
|
solana-download-utils = { path = "../../download-utils", version = "=1.7.11" }
|
|
tar = "0.4.37"
|
|
|
|
[features]
|
|
program = []
|
|
|
|
[[bin]]
|
|
name = "cargo-build-bpf"
|
|
path = "src/main.rs"
|