2022-08-14 13:27:41 -07:00
|
|
|
[package]
|
2023-05-15 13:09:26 -07:00
|
|
|
name = "creddy"
|
2023-11-09 14:25:20 -08:00
|
|
|
version = "0.4.1"
|
2023-05-15 13:09:26 -07:00
|
|
|
description = "A friendly AWS credentials manager"
|
|
|
|
authors = ["Joseph Montanaro"]
|
2022-08-14 13:27:41 -07:00
|
|
|
license = ""
|
|
|
|
repository = ""
|
2023-05-15 13:09:26 -07:00
|
|
|
default-run = "creddy"
|
2022-08-14 13:27:41 -07:00
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.57"
|
|
|
|
|
2023-05-15 13:09:26 -07:00
|
|
|
[[bin]]
|
|
|
|
name = "creddy_cli"
|
|
|
|
path = "src/bin/creddy_cli.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "creddy"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2022-08-14 13:27:41 -07:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
tauri-build = { version = "1.0.4", features = [] }
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-09-11 16:00:58 -07:00
|
|
|
tauri = { version = "1.2", features = ["dialog", "dialog-open", "global-shortcut", "os-all", "system-tray"] }
|
2023-04-30 14:10:21 -07:00
|
|
|
tauri-plugin-single-instance = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" }
|
2022-08-14 13:27:41 -07:00
|
|
|
sodiumoxide = "0.2.7"
|
|
|
|
tokio = { version = ">=1.19", features = ["full"] }
|
2022-12-02 22:59:13 -08:00
|
|
|
sqlx = { version = "0.6.2", features = ["sqlite", "runtime-tokio-rustls"] }
|
2022-12-03 21:47:09 -08:00
|
|
|
sysinfo = "0.26.8"
|
2022-12-19 15:26:44 -08:00
|
|
|
aws-types = "0.52.0"
|
|
|
|
aws-sdk-sts = "0.22.0"
|
|
|
|
aws-smithy-types = "0.52.0"
|
|
|
|
aws-config = "0.52.0"
|
2022-12-21 11:01:34 -08:00
|
|
|
thiserror = "1.0.38"
|
2022-12-22 16:36:32 -08:00
|
|
|
once_cell = "1.16.0"
|
2022-12-28 15:48:25 -08:00
|
|
|
strum = "0.24"
|
|
|
|
strum_macros = "0.24"
|
2023-04-27 14:24:08 -07:00
|
|
|
auto-launch = "0.4.0"
|
2023-04-28 22:34:17 -07:00
|
|
|
dirs = "5.0"
|
2023-05-06 12:01:56 -07:00
|
|
|
clap = { version = "3.2.23", features = ["derive"] }
|
2023-05-06 21:59:24 -07:00
|
|
|
is-terminal = "0.4.7"
|
2023-05-08 22:13:08 -07:00
|
|
|
argon2 = { version = "0.5.0", features = ["std"] }
|
|
|
|
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
|
2023-08-02 19:57:37 -07:00
|
|
|
which = "4.4.0"
|
2023-09-18 20:13:29 -07:00
|
|
|
windows = { version = "0.51.1", features = ["Win32_Foundation", "Win32_System_Pipes"] }
|
2022-08-14 13:27:41 -07: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 10:52:46 -07:00
|
|
|
default = ["custom-protocol"]
|
2022-08-14 13:27:41 -07:00
|
|
|
# this feature is used used for production builds where `devPath` points to the filesystem
|
|
|
|
# DO NOT remove this
|
2023-04-30 10:52:46 -07:00
|
|
|
custom-protocol = ["tauri/custom-protocol"]
|
2022-12-28 10:16:06 -08:00
|
|
|
|
|
|
|
# [profile.dev.build-override]
|
|
|
|
# opt-level = 3
|