generated from rosnovsky/create-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (26 loc) · 975 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
cargo-features = ["edition2024"]
[package]
name = "spinup"
version = "0.2.0"
authors = ["Art Rosnovsky <[email protected]>"]
edition = "2024"
description = "Quickly spin up a new Linux computer: install all the necessary software and configure the system to be ready for use."
readme = "README.md"
keywords = ["linux", "macos", "system", "setup", "configuration"]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/rosnovsky/spinup"
homepage = "https://rosnovsky.us/spinup"
documentation = "https://rosnovsky.us/spinup/docs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
colored = "2.1.0"
figlet-rs = "0.1.5"
futures = "0.3.30"
prettytable-rs = "0.10.0"
reqwest = { version = "0.12.4", features = ["json"] }
serde = { version = "1.0.201", features = ["derive"] }
serde_json = "1.0.117"
sysinfo = "0.30.12"
tokio = { version = "1", features = ["full"] }
toml = "0.8.12"