mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
Migrate to workspace inheritance
This commit is contained in:
parent
fdb41822fc
commit
5b2ade12a4
8 changed files with 150 additions and 106 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -75,7 +75,6 @@ dependencies = [
|
||||||
"futures",
|
"futures",
|
||||||
"futures-test",
|
"futures-test",
|
||||||
"hex",
|
"hex",
|
||||||
"hkdf",
|
|
||||||
"hmac",
|
"hmac",
|
||||||
"i18n-embed",
|
"i18n-embed",
|
||||||
"i18n-embed-fl",
|
"i18n-embed-fl",
|
||||||
|
|
60
Cargo.toml
60
Cargo.toml
|
@ -6,3 +6,63 @@ members = [
|
||||||
"rage",
|
"rage",
|
||||||
]
|
]
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
||||||
|
[workspace.package]
|
||||||
|
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
||||||
|
edition = "2021"
|
||||||
|
rust-version = "1.65"
|
||||||
|
repository = "https://github.com/str4d/rage"
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
|
|
||||||
|
[workspace.dependencies]
|
||||||
|
age = { version = "0.9.2", path = "age" }
|
||||||
|
age-core = { version = "0.9.0", path = "age-core" }
|
||||||
|
|
||||||
|
# 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"] }
|
||||||
|
|
||||||
|
# - X25519 from RFC 7748
|
||||||
|
x25519-dalek = "1"
|
||||||
|
|
||||||
|
# - HKDF from RFC 5869 with SHA-256
|
||||||
|
# - HMAC from RFC 2104 with SHA-256
|
||||||
|
hkdf = "0.12"
|
||||||
|
hmac = "0.12"
|
||||||
|
sha2 = "0.10"
|
||||||
|
|
||||||
|
# - scrypt from RFC 7914
|
||||||
|
scrypt = { version = "0.10", default-features = false }
|
||||||
|
|
||||||
|
# - CSPRNG
|
||||||
|
rand = "0.8"
|
||||||
|
rand_7 = { package = "rand", version = "0.7" }
|
||||||
|
|
||||||
|
# - Key encoding
|
||||||
|
bech32 = "0.9"
|
||||||
|
|
||||||
|
# Parsing
|
||||||
|
cookie-factory = "0.3.1"
|
||||||
|
nom = { version = "7", default-features = false, features = ["alloc"] }
|
||||||
|
|
||||||
|
# Secret management
|
||||||
|
pinentry = "0.5"
|
||||||
|
secrecy = "0.8"
|
||||||
|
subtle = "2"
|
||||||
|
zeroize = "1"
|
||||||
|
|
||||||
|
# Localization
|
||||||
|
i18n-embed = { version = "0.13", features = ["fluent-system"] }
|
||||||
|
i18n-embed-fl = "0.6"
|
||||||
|
lazy_static = "1"
|
||||||
|
rust-embed = "6"
|
||||||
|
|
||||||
|
# CLI
|
||||||
|
chrono = "0.4"
|
||||||
|
console = { version = "0.15", default-features = false }
|
||||||
|
env_logger = "0.9"
|
||||||
|
gumdrop = "0.8"
|
||||||
|
log = "0.4"
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
name = "age-core"
|
name = "age-core"
|
||||||
description = "[BETA] Common functions used across the age crates"
|
description = "[BETA] Common functions used across the age crates"
|
||||||
version = "0.9.0"
|
version = "0.9.0"
|
||||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
authors.workspace = true
|
||||||
repository = "https://github.com/str4d/rage"
|
repository.workspace = true
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
rust-version = "1.65"
|
rust-version.workspace = true
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
|
@ -17,29 +17,20 @@ rustdoc-args = ["--cfg", "docsrs"]
|
||||||
maintenance = { status = "experimental" }
|
maintenance = { status = "experimental" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# Dependencies required by the age specification:
|
# Dependencies exposed in a public API:
|
||||||
# - Base64 from RFC 4648
|
# (Breaking upgrades to these require a breaking upgrade to this crate.)
|
||||||
base64 = "0.13"
|
chacha20poly1305.workspace = true
|
||||||
|
cookie-factory.workspace = true
|
||||||
# - 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
|
|
||||||
io_tee = "0.1.1"
|
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 }
|
tempfile = { version = "3.2.0", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
@ -2,21 +2,26 @@
|
||||||
name = "age-plugin"
|
name = "age-plugin"
|
||||||
description = "[BETA] API for writing age plugins."
|
description = "[BETA] API for writing age plugins."
|
||||||
version = "0.4.0"
|
version = "0.4.0"
|
||||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
authors.workspace = true
|
||||||
repository = "https://github.com/str4d/rage"
|
repository.workspace = true
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
rust-version = "1.65"
|
rust-version.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
age-core = { version = "0.9.0", path = "../age-core", features = ["plugin"] }
|
# Dependencies exposed in a public API:
|
||||||
base64 = "0.13"
|
# (Breaking upgrades to these require a breaking upgrade to this crate.)
|
||||||
bech32 = "0.9"
|
age-core = { workspace = true, features = ["plugin"] }
|
||||||
chrono = "0.4"
|
|
||||||
|
# Dependencies used internally:
|
||||||
|
# (Breaking upgrades to these are usually backwards-compatible, but check MSRVs.)
|
||||||
|
base64.workspace = true
|
||||||
|
bech32.workspace = true
|
||||||
|
chrono.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
gumdrop = "0.8"
|
gumdrop.workspace = true
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
|
|
|
@ -2,55 +2,62 @@
|
||||||
name = "age"
|
name = "age"
|
||||||
description = "[BETA] A simple, secure, and modern encryption library."
|
description = "[BETA] A simple, secure, and modern encryption library."
|
||||||
version = "0.9.2"
|
version = "0.9.2"
|
||||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
authors.workspace = true
|
||||||
repository = "https://github.com/str4d/rage"
|
repository.workspace = true
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
keywords = ["rage", "encryption"]
|
keywords = ["rage", "encryption"]
|
||||||
categories = ["cryptography"]
|
categories = ["cryptography"]
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
rust-version = "1.65"
|
rust-version.workspace = true
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
maintenance = { status = "experimental" }
|
maintenance = { status = "experimental" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
age-core = { version = "0.9.0", path = "../age-core" }
|
age-core.workspace = true
|
||||||
|
|
||||||
# Dependencies required by the age specification:
|
# Dependencies exposed in a public API:
|
||||||
# - Base64 from RFC 4648
|
# (Breaking upgrades to these require a breaking upgrade to this crate.)
|
||||||
base64 = "0.13"
|
base64.workspace = true
|
||||||
|
chacha20poly1305.workspace = true
|
||||||
# - ChaCha20-Poly1305 from RFC 7539
|
hmac.workspace = true
|
||||||
chacha20poly1305 = { version = "0.10", default-features = false, features = ["alloc"] }
|
i18n-embed.workspace = true
|
||||||
|
rand.workspace = true
|
||||||
# - X25519 from RFC 7748
|
|
||||||
x25519-dalek = "1"
|
|
||||||
|
|
||||||
# - HKDF from RFC 5869 with SHA-256
|
|
||||||
# - HMAC from RFC 2104 with SHA-256
|
|
||||||
hkdf = "0.12"
|
|
||||||
hmac = "0.12"
|
|
||||||
sha2 = "0.10"
|
|
||||||
|
|
||||||
# - scrypt from RFC 7914
|
|
||||||
scrypt = { version = "0.10", default-features = false }
|
|
||||||
|
|
||||||
# - CSPRNG
|
|
||||||
rand = "0.8"
|
|
||||||
rand_7 = { package = "rand", version = "0.7" }
|
|
||||||
|
|
||||||
# - Key encoding
|
|
||||||
bech32 = "0.9"
|
|
||||||
|
|
||||||
# OpenSSH-specific dependencies:
|
# OpenSSH-specific dependencies:
|
||||||
# - RSAES-OAEP from RFC 8017 with SHA-256 and MGF1
|
# - RSAES-OAEP from RFC 8017 with SHA-256 and MGF1
|
||||||
num-traits = { version = "0.2", optional = true }
|
|
||||||
rsa = { version = "0.7", default-features = false, optional = true }
|
rsa = { version = "0.7", default-features = false, optional = true }
|
||||||
|
|
||||||
# - Conversion of public keys from Ed25519 to X25519
|
# - Conversion of public keys from Ed25519 to X25519
|
||||||
curve25519-dalek = { version = "3", optional = true }
|
curve25519-dalek = { version = "3", optional = true }
|
||||||
|
|
||||||
|
# Async I/O
|
||||||
|
futures = { version = "0.3", optional = true }
|
||||||
|
pin-project = "1"
|
||||||
|
|
||||||
|
# Common CLI dependencies
|
||||||
|
pinentry = { version = "0.5", optional = true }
|
||||||
|
|
||||||
|
# Dependencies used internally:
|
||||||
|
# (Breaking upgrades to these are usually backwards-compatible, but check MSRVs.)
|
||||||
|
bech32.workspace = true
|
||||||
|
cookie-factory.workspace = true
|
||||||
|
i18n-embed-fl.workspace = true
|
||||||
|
lazy_static.workspace = true
|
||||||
|
nom.workspace = true
|
||||||
|
rand_7.workspace = true
|
||||||
|
rust-embed.workspace = true
|
||||||
|
scrypt.workspace = true
|
||||||
|
sha2.workspace = true
|
||||||
|
subtle.workspace = true
|
||||||
|
x25519-dalek.workspace = true
|
||||||
|
zeroize.workspace = true
|
||||||
|
|
||||||
|
# OpenSSH-specific dependencies:
|
||||||
|
# - RSAES-OAEP from RFC 8017 with SHA-256 and MGF1
|
||||||
|
num-traits = { version = "0.2", optional = true }
|
||||||
|
|
||||||
# - Encrypted keys
|
# - Encrypted keys
|
||||||
aes = { version = "0.8", optional = true }
|
aes = { version = "0.8", optional = true }
|
||||||
aes-gcm = { version = "0.10", optional = true }
|
aes-gcm = { version = "0.10", optional = true }
|
||||||
|
@ -59,33 +66,17 @@ cbc = { version = "0.1", optional = true }
|
||||||
cipher = { version = "0.4.3", features = ["alloc"], optional = true }
|
cipher = { version = "0.4.3", features = ["alloc"], optional = true }
|
||||||
ctr = { version = "0.9", optional = true }
|
ctr = { version = "0.9", optional = true }
|
||||||
|
|
||||||
# Parsing
|
# scrypt Performance timer
|
||||||
cookie-factory = "0.3.1"
|
web-sys = { version = "0.3", optional = true, features = ["Window", "Performance"]}
|
||||||
nom = { version = "7", default-features = false, features = ["alloc"] }
|
|
||||||
|
|
||||||
# Secret management
|
|
||||||
subtle = "2"
|
|
||||||
zeroize = "1"
|
|
||||||
|
|
||||||
# Async I/O
|
# Async I/O
|
||||||
futures = { version = "0.3", optional = true }
|
|
||||||
memchr = { version = "2.5", optional = true }
|
memchr = { version = "2.5", optional = true }
|
||||||
pin-project = "1"
|
|
||||||
|
|
||||||
# Localization
|
|
||||||
i18n-embed = { version = "0.13", features = ["fluent-system"] }
|
|
||||||
i18n-embed-fl = "0.6"
|
|
||||||
lazy_static = "1"
|
|
||||||
rust-embed = "6"
|
|
||||||
|
|
||||||
# Common CLI dependencies
|
# Common CLI dependencies
|
||||||
atty = { version = "0.2", optional = true }
|
atty = { version = "0.2", optional = true }
|
||||||
console = { version = "0.15", optional = true, default-features = false }
|
console = { version = "0.15", optional = true, default-features = false }
|
||||||
pinentry = { version = "0.5", optional = true }
|
|
||||||
rpassword = { version = "6", optional = true }
|
rpassword = { version = "6", optional = true }
|
||||||
|
|
||||||
web-sys = { version = "0.3", optional = true, features = ["Window", "Performance"]}
|
|
||||||
|
|
||||||
[target.'cfg(any(unix, windows))'.dependencies]
|
[target.'cfg(any(unix, windows))'.dependencies]
|
||||||
# Plugin management
|
# Plugin management
|
||||||
which = { version = "4", optional = true }
|
which = { version = "4", optional = true }
|
||||||
|
|
1
fuzz-afl/Cargo.lock
generated
1
fuzz-afl/Cargo.lock
generated
|
@ -34,7 +34,6 @@ dependencies = [
|
||||||
"bech32",
|
"bech32",
|
||||||
"chacha20poly1305",
|
"chacha20poly1305",
|
||||||
"cookie-factory",
|
"cookie-factory",
|
||||||
"hkdf",
|
|
||||||
"hmac",
|
"hmac",
|
||||||
"i18n-embed",
|
"i18n-embed",
|
||||||
"i18n-embed-fl",
|
"i18n-embed-fl",
|
||||||
|
|
1
fuzz/Cargo.lock
generated
1
fuzz/Cargo.lock
generated
|
@ -21,7 +21,6 @@ dependencies = [
|
||||||
"bech32",
|
"bech32",
|
||||||
"chacha20poly1305",
|
"chacha20poly1305",
|
||||||
"cookie-factory",
|
"cookie-factory",
|
||||||
"hkdf",
|
|
||||||
"hmac",
|
"hmac",
|
||||||
"i18n-embed",
|
"i18n-embed",
|
||||||
"i18n-embed-fl",
|
"i18n-embed-fl",
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
name = "rage"
|
name = "rage"
|
||||||
description = "[BETA] A simple, secure, and modern encryption tool."
|
description = "[BETA] A simple, secure, and modern encryption tool."
|
||||||
version = "0.9.2"
|
version = "0.9.2"
|
||||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
authors.workspace = true
|
||||||
repository = "https://github.com/str4d/rage"
|
repository.workspace = true
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
keywords = ["age", "cli", "encryption"]
|
keywords = ["age", "cli", "encryption"]
|
||||||
categories = ["command-line-utilities", "cryptography"]
|
categories = ["command-line-utilities", "cryptography"]
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
rust-version = "1.65"
|
rust-version.workspace = true
|
||||||
default-run = "rage"
|
default-run = "rage"
|
||||||
|
|
||||||
[package.metadata.deb]
|
[package.metadata.deb]
|
||||||
|
@ -54,17 +54,17 @@ maintenance = { status = "experimental" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# rage and rage-keygen dependencies
|
# rage and rage-keygen dependencies
|
||||||
age = { version = "0.9.2", path = "../age", features = ["armor", "cli-common", "plugin"] }
|
age = { workspace = true, features = ["armor", "cli-common", "plugin"] }
|
||||||
chrono = "0.4"
|
chrono.workspace = true
|
||||||
console = { version = "0.15", default-features = false }
|
console.workspace = true
|
||||||
env_logger = "0.9"
|
env_logger.workspace = true
|
||||||
gumdrop = "0.8"
|
gumdrop.workspace = true
|
||||||
i18n-embed = { version = "0.13", features = ["desktop-requester", "fluent-system"] }
|
i18n-embed = { workspace = true, features = ["desktop-requester"] }
|
||||||
i18n-embed-fl = "0.6"
|
i18n-embed-fl.workspace = true
|
||||||
lazy_static = "1"
|
lazy_static.workspace = true
|
||||||
log = "0.4"
|
log.workspace = true
|
||||||
pinentry = "0.5"
|
pinentry.workspace = true
|
||||||
rust-embed = "6"
|
rust-embed.workspace = true
|
||||||
|
|
||||||
# rage-mount dependencies
|
# rage-mount dependencies
|
||||||
ctrlc = { version = "3.2", optional = true }
|
ctrlc = { version = "3.2", optional = true }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue