Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
.pre-commit*
.direnv
target

.DS_Store
48 changes: 48 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ colored = "3.0"
dotenvy = "0.15"
inquire = { version = "0.9.4", features = ["experimental-multiline-input"] }
miette = { version = "7.6", features = ["fancy"] }
saphyr = "0.0.6"
serde_json = "1.0"
tempfile = "3.0"
http = "1.0"
Expand Down
5 changes: 4 additions & 1 deletion devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
channel = "stable";
version = "1.92.0";
};

languages.javascript = {
enable = true;
npm = {
Expand All @@ -20,6 +21,8 @@
pkgs.cargo-tarpaulin
# installers
pkgs.cargo-dist
# For development of the SOPS provider
pkgs.sops
];

git-hooks.hooks = {
Expand All @@ -37,7 +40,7 @@
# Build the CLI for integration tests
cargo build --release
export PATH="$PWD/target/release:$PATH"

# Run CLI integration tests
bash tests/cli-integration.sh
'';
Expand Down
1 change: 1 addition & 0 deletions secretspec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ rsa.workspace = true
uuid.workspace = true
data-encoding.workspace = true
detect-coding-agent.workspace = true
saphyr.workspace = true

[features]
default = ["cli", "keyring", "gcsm", "awssm", "vault", "bws"]
Expand Down
2 changes: 2 additions & 0 deletions secretspec/src/provider/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,10 @@ pub mod lastpass;
pub mod onepassword;
pub mod pass;
pub mod protonpass;
pub mod sops;
#[cfg(feature = "vault")]
pub mod vault;

#[macro_use]
pub mod macros;

Expand Down
Loading