creddy/src-tauri/Cargo.toml

68 lines
1.9 KiB
TOML
Raw Normal View History

2022-08-14 20:27:41 +00:00
[package]
2023-05-15 20:09:26 +00:00
name = "creddy"
2024-06-03 05:21:43 +00:00
version = "0.4.9"
2023-05-15 20:09:26 +00:00
description = "A friendly AWS credentials manager"
authors = ["Joseph Montanaro"]
2022-08-14 20:27:41 +00:00
license = ""
repository = ""
2023-05-15 20:09:26 +00:00
default-run = "creddy"
2022-08-14 20:27:41 +00:00
edition = "2021"
rust-version = "1.57"
2023-05-15 20:09:26 +00:00
[[bin]]
name = "creddy_cli"
path = "src/bin/creddy_cli.rs"
[[bin]]
name = "creddy"
path = "src/main.rs"
2022-08-14 20:27:41 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
2024-06-02 00:17:50 +00:00
tauri-build = { version = "2.0.0-beta", features = [] }
2022-08-14 20:27:41 +00:00
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
2024-06-02 00:17:50 +00:00
tauri = { version = "2.0.0-beta", features = ["tray-icon"] }
2022-08-14 20:27:41 +00:00
sodiumoxide = "0.2.7"
tokio = { version = ">=1.19", features = ["full"] }
2022-12-04 05:47:09 +00:00
sysinfo = "0.26.8"
2024-06-25 19:19:29 +00:00
aws-config = "1.5.3"
aws-types = "1.3.2"
aws-sdk-sts = "1.33.0"
aws-smithy-types = "1.2.0"
2022-12-21 19:01:34 +00:00
thiserror = "1.0.38"
once_cell = "1.16.0"
2022-12-28 23:48:25 +00:00
strum = "0.24"
strum_macros = "0.24"
2023-04-27 21:24:08 +00:00
auto-launch = "0.4.0"
2023-04-29 05:34:17 +00:00
dirs = "5.0"
clap = { version = "3.2.23", features = ["derive"] }
is-terminal = "0.4.7"
argon2 = { version = "0.5.0", features = ["std"] }
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
2023-08-03 02:57:37 +00:00
which = "4.4.0"
windows = { version = "0.51.1", features = ["Win32_Foundation", "Win32_System_Pipes"] }
time = "0.3.31"
2024-06-02 00:17:50 +00:00
tauri-plugin-single-instance = "2.0.0-beta.9"
tauri-plugin-global-shortcut = "2.0.0-beta.6"
2024-06-03 05:21:43 +00:00
rfd = "0.14.1"
ssh-agent-lib = "0.4.0"
ssh-key = { version = "0.6.6", features = ["rsa", "ed25519", "encryption"] }
signature = "2.2.0"
2024-06-25 19:19:29 +00:00
tokio-stream = "0.1.15"
sqlx = { version = "0.7.4", features = ["sqlite", "runtime-tokio", "uuid"] }
2022-08-14 20:27:41 +00:00
[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
2023-04-30 17:52:46 +00:00
default = ["custom-protocol"]
2022-08-14 20:27:41 +00:00
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
2023-04-30 17:52:46 +00:00
custom-protocol = ["tauri/custom-protocol"]
2022-12-28 18:16:06 +00:00
# [profile.dev.build-override]
# opt-level = 3