diff --git a/Cargo.lock b/Cargo.lock index 3e57f22f..a4acb4d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -726,7 +726,7 @@ dependencies = [ [[package]] name = "ssh-encoding" -version = "0.0.0" +version = "0.1.0" dependencies = [ "base64ct", "hex-literal", @@ -759,7 +759,6 @@ dependencies = [ "subtle", "tempfile", "zeroize", - "zeroize_derive", ] [[package]] diff --git a/ssh-encoding/CHANGELOG.md b/ssh-encoding/CHANGELOG.md index d6637e04..ebeebada 100644 --- a/ssh-encoding/CHANGELOG.md +++ b/ssh-encoding/CHANGELOG.md @@ -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 diff --git a/ssh-encoding/Cargo.toml b/ssh-encoding/Cargo.toml index 60de300f..639b45f7 100644 --- a/ssh-encoding/Cargo.toml +++ b/ssh-encoding/Cargo.toml @@ -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 diff --git a/ssh-key/Cargo.toml b/ssh-key/Cargo.toml index 67895f72..d36d343f 100644 --- a/ssh-key/Cargo.toml +++ b/ssh-key/Cargo.toml @@ -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 } @@ -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"]