tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Cargo.toml (702B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 [package]
      6 name = "build-image"
      7 version = "0.1.0"
      8 authors = ["Tom Prince <tom.prince@twistedmatrix.com>"]
      9 edition = "2018"
     10 
     11 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
     12 
     13 [dependencies]
     14 reqwest = { version= "0.12.4", features = ["rustls-tls", "blocking"], default-features = false}
     15 zstd = "0.13.1"
     16 url = "2.5.1"
     17 anyhow = "1.0.86"
     18 serde = { version = "1.0.203", features = ["derive"]}
     19 serde_json = "1.0.117"
     20 envy = "0.4.2"
     21 fs_extra = "1.3"
     22 
     23 [workspace]