-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 1.03 KB
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
32
33
34
35
[package]
name = "railtube"
version = "0.1.0"
edition = "2024"
authors = ["p14c31355 <thinkoverheat@gmail.com>"]
description = "Declarative environment manager inspired by home-manager, for reproducible Linux setups with APT, Snap, Flatpak, Cargo and custom scripts."
license = "MIT OR Apache-2.0"
repository = "https://github.com/p14c31355/railtube"
readme = "README.md"
documentation = "https://docs.rs/railtube"
keywords = ["environment", "package-manager", "linux", "dotfiles", "setup"]
categories = ["command-line-utilities", "config", "development-tools"]
exclude = [
"target/",
".github/",
".gitignore",
"tests/",
"examples/",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.9.7"
reqwest = { version = "0.12.23", features = ["blocking"] }
tempfile = "3.23.0"
rayon = "1.5"
dirs = "6.0.0"
thiserror = "2.0.16"
[[bin]]
name = "railtube"
path = "src/main.rs"