Summary: Bumps [serde](https://github.com/serde-rs/serde) from 1.0.132 to 1.0.133. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/serde-rs/serde/releases">serde's releases</a>.</em></p> <blockquote> <h2>v1.0.133</h2> <ul> <li>Optimize deserialization of data structures that contain recursive use of <code>flatten</code> fields or <code>tag</code> or <code>untagged</code> enums (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/2148">https://github.com/facebook/flipper/issues/2148</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="7af97c66b8"><code>7af97c6</code></a> Release 1.0.133</li> <li><a href="1f57084365"><code>1f57084</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/2148">https://github.com/facebook/flipper/issues/2148</a> from serde-rs/deserializecontent</li> <li><a href="56bd369422"><code>56bd369</code></a> Optimize deserialization of recursive buffered types</li> <li><a href="ff259ec66b"><code>ff259ec</code></a> Detect warnings in CI</li> <li><a href="6c54aafeb9"><code>6c54aaf</code></a> Document the atomic ordering in the Serialize impl</li> <li><a href="5d41404e67"><code>5d41404</code></a> No need for the SeqCst load in test suite</li> <li><a href="1eccb3c350"><code>1eccb3c</code></a> Resolve unnecessary_to_owned clippy lint in test suite</li> <li>See full diff in <a href="https://github.com/serde-rs/serde/compare/v1.0.132...v1.0.133">compare view</a></li> </ul> </details> <br /> [](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> Pull Request resolved: https://github.com/facebook/flipper/pull/3227 Reviewed By: antonk52 Differential Revision: D33403875 Pulled By: passy fbshipit-source-id: 92cb32c45a3fee4eab0875a4200ec8e083bef1ca
29 lines
653 B
TOML
29 lines
653 B
TOML
[package]
|
|
name = "flipper-packer"
|
|
description = "Helper tool that breaks down a Flipper release into smaller artifacts."
|
|
license = "MIT"
|
|
repository = "https://github.com/facebook/flipper.git"
|
|
keywords = ["flipper", "cli"]
|
|
categories = ["development-tools"]
|
|
version = "0.3.0"
|
|
authors = ["Facebook, Inc."]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
clap = "2.34.0"
|
|
shellexpand = "2.1.0"
|
|
tar = "0.4.38"
|
|
serde = { version = "1.0.133", features = ["derive"] }
|
|
serde_yaml = "0.8.23"
|
|
anyhow = "1.0.52"
|
|
sha2 = "0.10.0"
|
|
data-encoding = "2.3.2"
|
|
serde_json = "1.0.67"
|
|
rayon = "1.5.1"
|
|
indicatif = "^0.15"
|
|
xz2 = "0.1.6"
|
|
ignore = "0.4.18"
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3.7"
|