-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
23 lines (22 loc) · 937 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
[package]
name = "fts_autosln"
authors = ["Forrest Smith <[email protected]>"]
description = "CLI tool to generate Visual Studio Solutions from PDBs"
repository = "https://github.com/forrestthewoods/fts_autosln"
keywords = ["visual studio"]
categories = ["command-line-utilities"]
license = "Unlicense OR MIT"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.70"
clap = { version = "4.3.4", features = ["derive"] }
dashmap = "5.4.0"
itertools = "0.10.5"
rayon = "1.7.0"
pdb = "0.8.0"
sysinfo = "0.28.4"
uuid = { version = "1.3.1", features = ["v4"] }
which = "4.4.0"
windows = { version = "0.48.0", features = ["Win32_System_Diagnostics_Debug", "Win32_Foundation", "Win32_System_Kernel", "Win32_System_SystemInformation"] }
windows-sys = { version= "0.48.0", features = ["Win32_System_Threading", "Win32_System_ProcessStatus", "Win32_System_Diagnostics_Debug", "Win32_Foundation", "Win32_System_SystemServices"] }