зеркало из https://github.com/mozilla/gecko-dev.git
24 строки
700 B
TOML
24 строки
700 B
TOML
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
[package]
|
|
name = "build-image"
|
|
version = "0.1.0"
|
|
authors = ["Tom Prince <tom.prince@twistedmatrix.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
reqwest = { version= "0.10.4", features = ["rustls-tls", "blocking"], default-features = false}
|
|
zstd = "0.5.1"
|
|
url = "2.1.1"
|
|
anyhow = "1.0.27"
|
|
serde = { version = "1.0.105", features = ["derive"]}
|
|
serde_json = "1.0.50"
|
|
envy = "0.4.1"
|
|
fs_extra = "1.1"
|
|
|
|
[workspace]
|