Skip to content

Commit

Permalink
ssh-encoding v0.1.0 (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Oct 24, 2022
1 parent 211a211 commit cc9fa69
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 1 addition & 2 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions ssh-encoding/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.1.0 (2022-10-23)
- Initial release
2 changes: 1 addition & 1 deletion ssh-encoding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssh-encoding"
version = "0.0.0"
version = "0.1.0"
description = """
Pure Rust implementation of SSH data type decoders/encoders as described
in RFC4251
Expand Down
3 changes: 1 addition & 2 deletions ssh-key/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ edition = "2021"
rust-version = "1.60"

[dependencies]
encoding = { package = "ssh-encoding", version = "0", features = ["base64", "pem", "sha2"], path = "../ssh-encoding" }
encoding = { package = "ssh-encoding", version = "0.1", features = ["base64", "pem", "sha2"], path = "../ssh-encoding" }
sha2 = { version = "0.10.6", default-features = false }
zeroize = { version = "1", default-features = false }

Expand All @@ -42,7 +42,6 @@ subtle = { version = "2", optional = true, default-features = false }
hex-literal = "0.3.4"
rand_chacha = "0.3"
tempfile = "3"
zeroize_derive = "1.3" # hack to make minimal-versions lint happy (pulled in by `ed25519-dalek`)

[features]
default = ["ecdsa", "rand_core", "std"]
Expand Down

0 comments on commit cc9fa69

Please sign in to comment.