Migrate to workspace inheritance

This commit is contained in:
Jack Grigg 2023-06-13 20:46:56 +00:00
parent fdb41822fc
commit 5b2ade12a4
8 changed files with 150 additions and 106 deletions

View file

@ -2,12 +2,12 @@
name = "age-core"
description = "[BETA] Common functions used across the age crates"
version = "0.9.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
authors.workspace = true
repository.workspace = true
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.65"
license.workspace = true
edition.workspace = true
rust-version.workspace = true
[package.metadata.docs.rs]
all-features = true
@ -17,29 +17,20 @@ rustdoc-args = ["--cfg", "docsrs"]
maintenance = { status = "experimental" }
[dependencies]
# Dependencies required by the age specification:
# - Base64 from RFC 4648
base64 = "0.13"
# - ChaCha20-Poly1305 from RFC 7539
chacha20poly1305 = { version = "0.10", default-features = false, features = ["alloc"] }
# - HKDF from RFC 5869 with SHA-256
hkdf = "0.12"
sha2 = "0.10"
# - CSPRNG
rand = "0.8"
# Parsing
cookie-factory = "0.3.1"
nom = { version = "7", default-features = false, features = ["alloc"] }
# Secret management
secrecy = "0.8"
# Plugin backend
# Dependencies exposed in a public API:
# (Breaking upgrades to these require a breaking upgrade to this crate.)
chacha20poly1305.workspace = true
cookie-factory.workspace = true
io_tee = "0.1.1"
nom.workspace = true
secrecy.workspace = true
# Dependencies used internally:
# (Breaking upgrades to these are usually backwards-compatible, but check MSRVs.)
base64.workspace = true
hkdf.workspace = true
rand.workspace = true
sha2.workspace = true
tempfile = { version = "3.2.0", optional = true }
[features]