Summary: Bumps [serde](https://github.com/serde-rs/serde) from 1.0.118 to 1.0.119. <details> <summary>Commits</summary> <ul> <li><a href="4c89cf89fd"><code>4c89cf8</code></a> Release 1.0.119</li> <li><a href="b0c99ed761"><code>b0c99ed</code></a> Restore compatibility with rustc 1.13.0</li> <li><a href="dd1f4b483e"><code>dd1f4b4</code></a> Make it clearer that the private implementation details are private</li> <li><a href="91bfa8f947"><code>91bfa8f</code></a> Refresh expandtest files with most recent rustfmt</li> <li><a href="8847800ce2"><code>8847800</code></a> Ignore from_over_into clippy lint in test suite</li> <li><a href="3c9fa1ccdf"><code>3c9fa1c</code></a> Switch to short form for serde.rs link in rustdoc</li> <li><a href="3c29a8857f"><code>3c29a88</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1936">#1936</a> from bryanburgers/add-serde-dynamo</li> <li><a href="a5da27e16d"><code>a5da27e</code></a> Add serde_dynamo to the list of data formats</li> <li>See full diff in <a href="https://github.com/serde-rs/serde/compare/v1.0.118...v1.0.119">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/1838 Reviewed By: mweststrate Differential Revision: D25945124 Pulled By: passy fbshipit-source-id: 30c3ec70aca76a6cb82c3dabe42547ba9429d981
28 lines
636 B
TOML
28 lines
636 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.2.0"
|
|
authors = ["Facebook, Inc."]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
clap = "2.33.3"
|
|
shellexpand = "2.1.0"
|
|
tar = "0.4.30"
|
|
serde = { version = "1.0.119", features = ["derive"] }
|
|
serde_yaml = "0.8.15"
|
|
anyhow = "1.0.38"
|
|
sha2 = "^0.8.1"
|
|
data-encoding = "2.3.1"
|
|
serde_json = "1.0.61"
|
|
rayon = "1.4.1"
|
|
indicatif = "0.15.0"
|
|
xz2 = "0.1.6"
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3.7"
|