forked from gamozolabs/pdblister
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
31 lines (29 loc) · 906 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "pdblister"
description = "Faster version of `symchk /om` for generating PDB manifests of offline machines"
license-file = "LICENSE"
homepage = "https://github.com/microsoft/pdblister"
repository = "https://github.com/microsoft/pdblister"
version = "0.0.0"
authors = ["Gogs <[email protected]>", "Justin Moore <[email protected]>"]
edition = "2018"
# N.B: We used to publish to crates.io, but since this is a binary crate that doesn't make much sense
# so we've opted to publish binary releases instead.
publish = false
[dependencies]
anyhow = "1.0"
base64 = "0.13"
clap = { version = "4.4.11", features = ["derive"] }
futures = "0.3"
indicatif = { version = "0.17.2", features = ["tokio"] }
mime = "0.3"
pdb = "0.8.0"
rand = "0.8"
reqwest = "0.11.13"
serde_json = "1.0.87"
thiserror = "1.0.37"
url = "2.2"
zerocopy = "0.6"
[dependencies.tokio]
version = "1.24.2"
features = ["full"]