Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.2.0 #1

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 4 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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Ignore IDE specific files
.idea/

# Generated by Cargo
# will have compiled files and executables
debug/
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "keystore-rs"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
authors = [
"Ryan Quinn Ford <ryan@deltadevs.xyz>",
Expand All @@ -14,15 +14,15 @@ readme = "README.md"

[dependencies]
ed25519-consensus = "2.1.0"
rand = "0.8.4"
rand = "0.8.5"
dotenvy = "0.15.7"
hex = "0.4.3"
aes-gcm = "0.10.3"
mockall = { version = "0.12.1" }
mockall = { version = "0.13.1" }
base64 = "0.22.1"

[target.'cfg(target_os = "macos")'.dependencies]
security-framework = "2.4"
security-framework = "3.0.1"

[target.'cfg(target_os = "linux")'.dependencies]
keyring = "3.0.1"
keyring = "3.6.1"
4 changes: 2 additions & 2 deletions README.md
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The example in here needs to be further adjusted to the latest refactoring

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Add the following to your `Cargo.toml`:

```toml
[dependencies]
keystore-rs = "0.1.0"
keystore-rs = "0.2.0"
```

or
Expand Down Expand Up @@ -45,7 +45,7 @@ fn main() {

// Retrieve the signing key from the keystore
let retrieved_key = keystore.get_signing_key().unwrap();

assert_eq!(signing_key.to_bytes(), retrieved_key.to_bytes());
}
```
Expand Down