added the ability to add new configs to separate projects, like work vs personal. Also added a way to switch between these configs.
28 lines
593 B
TOML
28 lines
593 B
TOML
[package]
|
|
name = "tetanus"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
aes-gcm = "0.11.0"
|
|
anyhow = "1.0.103"
|
|
clap = { version = "4.6.1", features = ["derive"] }
|
|
clipboard = "0.5.0"
|
|
crossterm = "0.29.0"
|
|
fs_extra = "1.3.0"
|
|
ipnet = "2.12.0"
|
|
keyring = "4.1.6"
|
|
rand = "0.10.2"
|
|
ratatui = "0.30.0"
|
|
rayon = "1.12.0"
|
|
rcgen = "0.14.8"
|
|
rhai = { version = "1.24.0", features = ["metadata", "sync"] }
|
|
rustc-hash = "2.1.2"
|
|
rustls = "0.23.43"
|
|
rustls-pemfile = "2.2.0"
|
|
sysinfo = "0.39.6"
|
|
textwrap = "0.16.2"
|
|
tokio = { version = "1.52.3", features = ["full"] }
|
|
tokio-rustls = "0.26.4"
|
|
walkdir = "2.5.0"
|