mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
v0.9.0
This commit is contained in:
parent
9d33fbb931
commit
ec025bea2a
12 changed files with 25 additions and 18 deletions
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -52,7 +52,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "age"
|
||||
version = "0.8.1"
|
||||
version = "0.9.0"
|
||||
dependencies = [
|
||||
"aes 0.8.1",
|
||||
"age-core",
|
||||
|
@ -104,7 +104,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "age-core"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"chacha20poly1305",
|
||||
|
@ -120,7 +120,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "age-plugin"
|
||||
version = "0.3.0"
|
||||
version = "0.4.0"
|
||||
dependencies = [
|
||||
"age-core",
|
||||
"base64",
|
||||
|
@ -1919,7 +1919,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "rage"
|
||||
version = "0.8.1"
|
||||
version = "0.9.0"
|
||||
dependencies = [
|
||||
"age",
|
||||
"chrono",
|
||||
|
|
|
@ -7,6 +7,8 @@ and this project adheres to Rust's notion of
|
|||
to 1.0.0 are beta releases.
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.9.0] - 2022-10-27
|
||||
### Changed
|
||||
- MSRV is now 1.59.0.
|
||||
- Migrated to `aead 0.5`.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "age-core"
|
||||
description = "[BETA] Common functions used across the age crates"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
||||
repository = "https://github.com/str4d/rage"
|
||||
readme = "README.md"
|
||||
|
|
|
@ -9,8 +9,11 @@ and this project adheres to Rust's notion of
|
|||
to 1.0.0 are beta releases.
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.4.0] - 2022-10-27
|
||||
### Changed
|
||||
- MSRV is now 1.59.0.
|
||||
- Migrated to `age-core 0.9`.
|
||||
|
||||
## [0.3.0] - 2022-05-02
|
||||
### Added
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "age-plugin"
|
||||
description = "[BETA] API for writing age plugins."
|
||||
version = "0.3.0"
|
||||
version = "0.4.0"
|
||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
||||
repository = "https://github.com/str4d/rage"
|
||||
readme = "README.md"
|
||||
|
@ -10,7 +10,7 @@ edition = "2021"
|
|||
rust-version = "1.59"
|
||||
|
||||
[dependencies]
|
||||
age-core = { version = "0.8.0", path = "../age-core", features = ["plugin"] }
|
||||
age-core = { version = "0.9.0", path = "../age-core", features = ["plugin"] }
|
||||
base64 = "0.13"
|
||||
bech32 = "0.9"
|
||||
chrono = "0.4"
|
||||
|
|
|
@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
|
|||
to 1.0.0 are beta releases.
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.9.0] - 2022-10-27
|
||||
### Added
|
||||
- `age::armor::ArmoredReadError`, used to wrap armor-specific read errors inside
|
||||
`std::io::Error`.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "age"
|
||||
description = "[BETA] A simple, secure, and modern encryption library."
|
||||
version = "0.8.1"
|
||||
version = "0.9.0"
|
||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
||||
repository = "https://github.com/str4d/rage"
|
||||
readme = "README.md"
|
||||
|
@ -15,7 +15,7 @@ rust-version = "1.59"
|
|||
maintenance = { status = "experimental" }
|
||||
|
||||
[dependencies]
|
||||
age-core = { version = "0.8.0", path = "../age-core" }
|
||||
age-core = { version = "0.9.0", path = "../age-core" }
|
||||
|
||||
# Dependencies required by the age specification:
|
||||
# - Base64 from RFC 4648
|
||||
|
|
|
@ -23,7 +23,7 @@ The reference interoperable Go implementation is available at
|
|||
Add this line to your `Cargo.toml`:
|
||||
|
||||
```
|
||||
age = "0.8"
|
||||
age = "0.9"
|
||||
```
|
||||
|
||||
See the [documentation](https://docs.rs/age) for examples.
|
||||
|
|
5
fuzz-afl/Cargo.lock
generated
5
fuzz-afl/Cargo.lock
generated
|
@ -27,13 +27,12 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "age"
|
||||
version = "0.8.1"
|
||||
version = "0.9.0"
|
||||
dependencies = [
|
||||
"age-core",
|
||||
"base64",
|
||||
"bech32",
|
||||
"chacha20poly1305",
|
||||
"cipher",
|
||||
"cookie-factory",
|
||||
"hkdf",
|
||||
"hmac",
|
||||
|
@ -54,7 +53,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "age-core"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"chacha20poly1305",
|
||||
|
|
5
fuzz/Cargo.lock
generated
5
fuzz/Cargo.lock
generated
|
@ -14,13 +14,12 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "age"
|
||||
version = "0.8.1"
|
||||
version = "0.9.0"
|
||||
dependencies = [
|
||||
"age-core",
|
||||
"base64",
|
||||
"bech32",
|
||||
"chacha20poly1305",
|
||||
"cipher",
|
||||
"cookie-factory",
|
||||
"hkdf",
|
||||
"hmac",
|
||||
|
@ -41,7 +40,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "age-core"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"chacha20poly1305",
|
||||
|
|
|
@ -9,6 +9,8 @@ and this project adheres to Rust's notion of
|
|||
to 1.0.0 are beta releases.
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.9.0] - 2022-10-27
|
||||
### Changed
|
||||
- MSRV is now 1.59.0.
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "rage"
|
||||
description = "[BETA] A simple, secure, and modern encryption tool."
|
||||
version = "0.8.1"
|
||||
version = "0.9.0"
|
||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
||||
repository = "https://github.com/str4d/rage"
|
||||
readme = "../README.md"
|
||||
|
@ -54,7 +54,7 @@ maintenance = { status = "experimental" }
|
|||
|
||||
[dependencies]
|
||||
# rage and rage-keygen dependencies
|
||||
age = { version = "0.8.1", path = "../age", features = ["armor", "cli-common", "plugin"] }
|
||||
age = { version = "0.9.0", path = "../age", features = ["armor", "cli-common", "plugin"] }
|
||||
chrono = "0.4"
|
||||
console = { version = "0.15", default-features = false }
|
||||
env_logger = "0.9"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue