school-computer-toolkit/Cargo.toml

23 lines
856 B
TOML
Raw Permalink Normal View History

2022-06-09 17:47:41 -04:00
[package]
name = "school-computer-toolkit"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-11-08 08:40:01 -05:00
async-scoped = { version = "0.7", features = ["use-tokio"] }
2022-06-10 13:52:44 -04:00
dirs = "4"
2022-11-08 08:40:01 -05:00
futures-util = { version = "0.3.21", default-features = false, features = ["alloc"] }
#indexmap = "1.9.1"
miette = { version = "4.7", features = ["fancy"] }
once_cell = { version = "1.16", features = ["parking_lot"] }
2022-06-09 17:47:41 -04:00
ramhorns = "0.14"
2022-11-08 08:40:01 -05:00
reqwest = { version = "0.11.10", features = ["json"] }
serde = { version = "1", features = ["derive"] }
2022-06-09 17:47:41 -04:00
serde_json = "1"
tokio = { version = "1.19", features = ["fs", "macros", "process", "rt", "rt-multi-thread"] }
2022-06-09 17:47:41 -04:00
url = "2.2"
2022-11-08 08:40:01 -05:00
windows-sys = { version = "0.42", features = ["Win32_Foundation", "Win32_System_Registry", "Win32_System_WindowsProgramming"] }
2022-06-09 17:47:41 -04:00