81 lines
2.3 KiB
TOML
81 lines
2.3 KiB
TOML
[package]
|
|
name = "creddy"
|
|
version = "0.6.1"
|
|
description = "A friendly AWS credentials manager"
|
|
authors = ["Joseph Montanaro"]
|
|
license = ""
|
|
repository = ""
|
|
default-run = "creddy"
|
|
edition = "2021"
|
|
rust-version = "1.57"
|
|
|
|
[[bin]]
|
|
name = "creddy"
|
|
path = "src/main.rs"
|
|
|
|
# we use a workspace so that we can split out the CLI and make it possible to build independently
|
|
[workspace]
|
|
members = ["creddy_cli"]
|
|
|
|
[workspace.dependencies]
|
|
dirs = "5.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = ">=1.19", features = ["full"] }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0.0-beta", features = [] }
|
|
|
|
[dependencies]
|
|
creddy_cli = { path = "./creddy_cli" }
|
|
tauri = { version = "2.0.0-beta", features = ["tray-icon"] }
|
|
sodiumoxide = "0.2.7"
|
|
sysinfo = "0.26.8"
|
|
aws-config = "1.5.3"
|
|
aws-types = "1.3.2"
|
|
aws-sdk-sts = "1.33.0"
|
|
aws-smithy-types = "1.2.0"
|
|
dirs = { workspace = true }
|
|
thiserror = "1.0.38"
|
|
once_cell = "1.16.0"
|
|
strum = "0.24"
|
|
strum_macros = "0.24"
|
|
auto-launch = "0.4.0"
|
|
is-terminal = "0.4.7"
|
|
argon2 = { version = "0.5.0", features = ["std"] }
|
|
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
|
|
which = "4.4.0"
|
|
windows = { version = "0.51.1", features = ["Win32_Foundation", "Win32_System_Pipes"] }
|
|
time = "0.3.31"
|
|
tauri-plugin-global-shortcut = "2.0.0-beta.6"
|
|
tauri-plugin-os = "2.0.0-beta.6"
|
|
tauri-plugin-dialog = "2.0.0-beta.9"
|
|
rfd = "0.13.0"
|
|
ssh-agent-lib = "0.4.0"
|
|
ssh-key = { version = "0.6.6", features = ["rsa", "ed25519", "encryption"] }
|
|
signature = "2.2.0"
|
|
tokio-stream = "0.1.15"
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sqlx = { version = "0.7.4", features = ["sqlite", "runtime-tokio", "uuid"] }
|
|
tokio = { workspace = true }
|
|
tokio-util = { version = "0.7.11", features = ["codec"] }
|
|
futures = "0.3.30"
|
|
openssl = "0.10.64"
|
|
rsa = "0.9.6"
|
|
sha2 = "0.10.8"
|
|
ssh-encoding = "0.2.0"
|
|
|
|
[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
|
|
default = ["custom-protocol"]
|
|
# this feature is used used for production builds where `devPath` points to the filesystem
|
|
# DO NOT remove this
|
|
custom-protocol = ["tauri/custom-protocol"]
|
|
|
|
# [profile.dev.build-override]
|
|
# opt-level = 3
|