mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 19:07:42 +03:00
rage: Add snapshot tests for the CLIs
This commit is contained in:
parent
d3ded6c7fa
commit
30e099c3c2
49 changed files with 752 additions and 0 deletions
162
Cargo.lock
generated
162
Cargo.lock
generated
|
@ -172,12 +172,55 @@ version = "0.1.6"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
||||
|
||||
[[package]]
|
||||
name = "anstream"
|
||||
version = "0.3.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
|
||||
dependencies = [
|
||||
"anstyle",
|
||||
"anstyle-parse",
|
||||
"anstyle-query",
|
||||
"anstyle-wincon",
|
||||
"colorchoice",
|
||||
"is-terminal",
|
||||
"utf8parse",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "anstyle"
|
||||
version = "1.0.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "15c4c2c83f81532e5845a733998b6971faca23490340a418e9b72a3ec9de12ea"
|
||||
|
||||
[[package]]
|
||||
name = "anstyle-parse"
|
||||
version = "0.2.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
|
||||
dependencies = [
|
||||
"utf8parse",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "anstyle-query"
|
||||
version = "1.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
|
||||
dependencies = [
|
||||
"windows-sys 0.48.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "anstyle-wincon"
|
||||
version = "1.0.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c677ab05e09154296dd37acecd46420c17b9713e8366facafa8fc0885167cf4c"
|
||||
dependencies = [
|
||||
"anstyle",
|
||||
"windows-sys 0.48.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "arc-swap"
|
||||
version = "1.6.0"
|
||||
|
@ -481,6 +524,12 @@ version = "0.5.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
|
||||
|
||||
[[package]]
|
||||
name = "colorchoice"
|
||||
version = "1.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
|
||||
|
||||
[[package]]
|
||||
name = "console"
|
||||
version = "0.15.7"
|
||||
|
@ -505,6 +554,15 @@ version = "0.1.5"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
|
||||
|
||||
[[package]]
|
||||
name = "content_inspector"
|
||||
version = "0.2.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b7bda66e858c683005a53a9a60c69a4aca7eeaa45d124526e389f7aec8e62f38"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cookie-factory"
|
||||
version = "0.3.2"
|
||||
|
@ -732,6 +790,12 @@ dependencies = [
|
|||
"syn 2.0.46",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "dunce"
|
||||
version = "1.0.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
|
||||
|
||||
[[package]]
|
||||
name = "either"
|
||||
version = "1.9.0"
|
||||
|
@ -1048,6 +1112,12 @@ version = "0.28.1"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
||||
|
||||
[[package]]
|
||||
name = "glob"
|
||||
version = "0.3.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
||||
|
||||
[[package]]
|
||||
name = "gumdrop"
|
||||
version = "0.8.1"
|
||||
|
@ -1125,6 +1195,16 @@ version = "2.1.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
||||
|
||||
[[package]]
|
||||
name = "humantime-serde"
|
||||
version = "1.1.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c"
|
||||
dependencies = [
|
||||
"humantime",
|
||||
"serde",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "i18n-config"
|
||||
version = "0.4.5"
|
||||
|
@ -1461,6 +1541,12 @@ dependencies = [
|
|||
"minimal-lexical",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "normalize-line-endings"
|
||||
version = "0.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
||||
|
||||
[[package]]
|
||||
name = "num-bigint-dig"
|
||||
version = "0.8.4"
|
||||
|
@ -1585,6 +1671,16 @@ version = "0.3.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
|
||||
|
||||
[[package]]
|
||||
name = "os_pipe"
|
||||
version = "1.1.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "57119c3b893986491ec9aa85056780d3a0f3cf4da7cc09dd3650dbd6c6738fb9"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "page_size"
|
||||
version = "0.5.0"
|
||||
|
@ -1917,6 +2013,7 @@ dependencies = [
|
|||
"rust-embed",
|
||||
"tar",
|
||||
"time",
|
||||
"trycmd",
|
||||
"zip",
|
||||
]
|
||||
|
||||
|
@ -2286,6 +2383,12 @@ dependencies = [
|
|||
"digest",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "shlex"
|
||||
version = "1.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
|
||||
|
||||
[[package]]
|
||||
name = "signature"
|
||||
version = "2.2.0"
|
||||
|
@ -2296,6 +2399,12 @@ dependencies = [
|
|||
"rand_core",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "similar"
|
||||
version = "2.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "32fea41aca09ee824cc9724996433064c89f7777e60762749a4170a14abbfa21"
|
||||
|
||||
[[package]]
|
||||
name = "slab"
|
||||
version = "0.4.9"
|
||||
|
@ -2311,6 +2420,37 @@ version = "1.11.2"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
|
||||
|
||||
[[package]]
|
||||
name = "snapbox"
|
||||
version = "0.4.11"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f6bccd62078347f89a914e3004d94582e13824d4e3d8a816317862884c423835"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"anstyle",
|
||||
"content_inspector",
|
||||
"dunce",
|
||||
"filetime",
|
||||
"libc",
|
||||
"normalize-line-endings",
|
||||
"os_pipe",
|
||||
"similar",
|
||||
"snapbox-macros",
|
||||
"tempfile",
|
||||
"wait-timeout",
|
||||
"walkdir",
|
||||
"windows-sys 0.45.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "snapbox-macros"
|
||||
version = "0.3.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "eaaf09df9f0eeae82be96290918520214530e738a7fe5a351b0f24cf77c0ca31"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "spin"
|
||||
version = "0.5.2"
|
||||
|
@ -2592,6 +2732,22 @@ dependencies = [
|
|||
"winnow",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "trycmd"
|
||||
version = "0.14.16"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2925e71868a12b173c1eb166018c2d2f9dfaedfcaec747bdb6ea2246785d258e"
|
||||
dependencies = [
|
||||
"glob",
|
||||
"humantime",
|
||||
"humantime-serde",
|
||||
"rayon",
|
||||
"serde",
|
||||
"shlex",
|
||||
"snapbox",
|
||||
"toml_edit",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "type-map"
|
||||
version = "0.4.0"
|
||||
|
@ -2648,6 +2804,12 @@ dependencies = [
|
|||
"subtle",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "utf8parse"
|
||||
version = "0.2.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
|
||||
|
||||
[[package]]
|
||||
name = "uuid"
|
||||
version = "1.6.1"
|
||||
|
|
|
@ -80,6 +80,7 @@ clap = { version = "4", default-features = false }
|
|||
clap_complete = "4"
|
||||
flate2 = "1"
|
||||
man = "0.3"
|
||||
trycmd = "0.14"
|
||||
|
||||
[features]
|
||||
default = ["ssh"]
|
||||
|
|
4
rage/tests/cli_tests.rs
Normal file
4
rage/tests/cli_tests.rs
Normal file
|
@ -0,0 +1,4 @@
|
|||
#[test]
|
||||
fn cli_tests() {
|
||||
trycmd::TestCases::new().case("tests/cmd/*/*.toml");
|
||||
}
|
3
rage/tests/cmd/rage-keygen/gen-output.out/key.txt
Normal file
3
rage/tests/cmd/rage-keygen/gen-output.out/key.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
# created: 20[..]-[..]-[..]T[..]:[..]:[..]Z
|
||||
# public key: age1[..]
|
||||
AGE-SECRET-KEY-1[..]
|
6
rage/tests/cmd/rage-keygen/gen-output.toml
Normal file
6
rage/tests/cmd/rage-keygen/gen-output.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
bin.name = "rage-keygen"
|
||||
args = "-o key.txt"
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Public key: age1[..]
|
||||
"""
|
11
rage/tests/cmd/rage-keygen/gen-stdout.toml
Normal file
11
rage/tests/cmd/rage-keygen/gen-stdout.toml
Normal file
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage-keygen"
|
||||
args = ""
|
||||
stdout = """
|
||||
# created: 20[..]-[..]-[..]T[..]:[..]:[..]Z
|
||||
# public key: age1[..]
|
||||
AGE-SECRET-KEY-1[..]
|
||||
"""
|
||||
# Because trycmd isn't a terminal, rage-keygen thinks stdout is piped to a file.
|
||||
stderr = """
|
||||
Public key: age1[..]
|
||||
"""
|
11
rage/tests/cmd/rage-keygen/help.toml
Normal file
11
rage/tests/cmd/rage-keygen/help.toml
Normal file
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage-keygen"
|
||||
args = "--help"
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Usage: [..]rage-keygen[EXE] [OPTIONS]
|
||||
|
||||
Optional arguments:
|
||||
-h, --help Print this help message and exit.
|
||||
-V, --version Print version info and exit.
|
||||
-o, --output OUTPUT Write the result to the file at path OUTPUT. Defaults to standard output.
|
||||
"""
|
12
rage/tests/cmd/rage-keygen/help_it.toml
Normal file
12
rage/tests/cmd/rage-keygen/help_it.toml
Normal file
|
@ -0,0 +1,12 @@
|
|||
bin.name = "rage-keygen"
|
||||
args = "--help"
|
||||
env.add.LANG = "it"
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Usage: [..]rage-keygen[EXE] [OPTIONS]
|
||||
|
||||
Optional arguments:
|
||||
-h, --help Print this help message and exit.
|
||||
-V, --version Print version info and exit.
|
||||
-o, --output OUTPUT Write the result to the file at path OUTPUT. Defaults to standard output.
|
||||
"""
|
6
rage/tests/cmd/rage-keygen/version.toml
Normal file
6
rage/tests/cmd/rage-keygen/version.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
bin.name = "rage-keygen"
|
||||
args = "--version"
|
||||
stdout = """
|
||||
rage-keygen 0.9.2
|
||||
"""
|
||||
stderr = ""
|
17
rage/tests/cmd/rage-mount/help.toml
Normal file
17
rage/tests/cmd/rage-mount/help.toml
Normal file
|
@ -0,0 +1,17 @@
|
|||
bin.name = "rage-mount"
|
||||
args = "--help"
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Usage: [..]rage-mount[EXE] [OPTIONS]
|
||||
|
||||
Positional arguments:
|
||||
filename The encrypted filesystem to mount.
|
||||
mountpoint The directory to mount the filesystem at.
|
||||
|
||||
Optional arguments:
|
||||
-h, --help Print this help message and exit.
|
||||
-V, --version Print version info and exit.
|
||||
-t, --types TYPES Indicates the filesystem type (one of "tar", "zip").
|
||||
--max-work-factor WF Maximum work factor to allow for passphrase decryption.
|
||||
-i, --identity IDENTITY Use the private key file at IDENTITY. May be repeated.
|
||||
"""
|
18
rage/tests/cmd/rage-mount/help_it.toml
Normal file
18
rage/tests/cmd/rage-mount/help_it.toml
Normal file
|
@ -0,0 +1,18 @@
|
|||
bin.name = "rage-mount"
|
||||
args = "--help"
|
||||
env.add.LANG = "it"
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Usage: [..]rage-mount[EXE] [OPTIONS]
|
||||
|
||||
Positional arguments:
|
||||
filename The encrypted filesystem to mount.
|
||||
mountpoint The directory to mount the filesystem at.
|
||||
|
||||
Optional arguments:
|
||||
-h, --help Print this help message and exit.
|
||||
-V, --version Print version info and exit.
|
||||
-t, --types TYPES Indicates the filesystem type (one of "tar", "zip").
|
||||
--max-work-factor WF Maximum work factor to allow for passphrase decryption.
|
||||
-i, --identity IDENTITY Use the private key file at IDENTITY. May be repeated.
|
||||
"""
|
6
rage/tests/cmd/rage-mount/version.toml
Normal file
6
rage/tests/cmd/rage-mount/version.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
bin.name = "rage-mount"
|
||||
args = "--version"
|
||||
stdout = """
|
||||
rage-mount 0.9.2
|
||||
"""
|
||||
stderr = ""
|
12
rage/tests/cmd/rage/decrypt-armor-flag.toml
Normal file
12
rage/tests/cmd/rage/decrypt-armor-flag.toml
Normal file
|
@ -0,0 +1,12 @@
|
|||
bin.name = "rage"
|
||||
args = "--decrypt --armor"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: -a/--armor can't be used with -d/--decrypt.
|
||||
Note that armored files are detected automatically.
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
|
@ -0,0 +1,8 @@
|
|||
-----BEGIN AGE ENCRYPTED FILE-----
|
||||
YWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBHUGc3Zlhpekp0K012aXdu
|
||||
T1VZN0lmWlRmNjdLYVB4RldkTFVLTkNDUXlBCmJjRUcrM3E0a0U0N3IyK1JsTitG
|
||||
dHVTd0N6TVFRTWgzdG5uSzJmNm9YMTgKLT4gQXQ1WWAtZ3JlYXNlIDxodGFSVHJg
|
||||
IFg0cWYsO0ogZ2Fzc1EKZGtPSTB3Ci0tLSBKazRIaHJxdnNJcHpyclRkQjg3QW5r
|
||||
SVE2MHdtWkErYTNrNWJibWd1bmNBCkK9FoOkiLB93gD79vNed8L3LM9rhKm5qma2
|
||||
lSiwRx/aM1DKaZO0CMmYQkoM2tPReA==
|
||||
-----END AGE ENCRYPTED FILE-----
|
|
@ -0,0 +1,3 @@
|
|||
# created: 2024-01-07T22:30:16Z
|
||||
# public key: age1g8g50ksmsfxuv4rpyhlnau8tx87y2xz8v4agzs2vltcxlssy2qwqq6qc4t
|
||||
AGE-SECRET-KEY-1SRQGS50G584HFA5JG9D6D9S6639VVHJUE5XHHKJET9DRU76HK4RQP0X5Q3
|
|
@ -0,0 +1 @@
|
|||
Test plaintext.
|
5
rage/tests/cmd/rage/decrypt-filein-fileout-long.toml
Normal file
5
rage/tests/cmd/rage/decrypt-filein-fileout-long.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
bin.name = "rage"
|
||||
args = "--decrypt --identity key.txt --output file.txt file.age.txt"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = ""
|
22
rage/tests/cmd/rage/decrypt-missing-identities.toml
Normal file
22
rage/tests/cmd/rage/decrypt-missing-identities.toml
Normal file
|
@ -0,0 +1,22 @@
|
|||
bin.name = "rage"
|
||||
args = "--decrypt"
|
||||
status = "failed"
|
||||
stdin = """
|
||||
-----BEGIN AGE ENCRYPTED FILE-----
|
||||
YWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBHUGc3Zlhpekp0K012aXdu
|
||||
T1VZN0lmWlRmNjdLYVB4RldkTFVLTkNDUXlBCmJjRUcrM3E0a0U0N3IyK1JsTitG
|
||||
dHVTd0N6TVFRTWgzdG5uSzJmNm9YMTgKLT4gQXQ1WWAtZ3JlYXNlIDxodGFSVHJg
|
||||
IFg0cWYsO0ogZ2Fzc1EKZGtPSTB3Ci0tLSBKazRIaHJxdnNJcHpyclRkQjg3QW5r
|
||||
SVE2MHdtWkErYTNrNWJibWd1bmNBCkK9FoOkiLB93gD79vNed8L3LM9rhKm5qma2
|
||||
lSiwRx/aM1DKaZO0CMmYQkoM2tPReA==
|
||||
-----END AGE ENCRYPTED FILE-----
|
||||
"""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: Missing identities.
|
||||
Did you forget to specify -i/--identity?
|
||||
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
11
rage/tests/cmd/rage/decrypt-missing-input.toml
Normal file
11
rage/tests/cmd/rage/decrypt-missing-input.toml
Normal file
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage"
|
||||
args = "--decrypt"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: failed to fill whole buffer
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
|
@ -0,0 +1,20 @@
|
|||
bin.name = "rage"
|
||||
args = "--decrypt --identity key.txt"
|
||||
status = "failed"
|
||||
# Passphrase: foobar
|
||||
stdin = """
|
||||
-----BEGIN AGE ENCRYPTED FILE-----
|
||||
YWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IHNjcnlwdCBXWDZGUHRENjJxeGt5M1hU
|
||||
cG83QjZnIDE5CkNDaXFUTnNNMzRaUzJwQzI1SnYxemg0dVdPY2hOTHJWWlhpT0ow
|
||||
MXpqSFEKLS0tIFZpdUNKcGpiS3hoM0dqK0hrV2crN1FWTlgzMnI2WFQralQxMFRT
|
||||
ZEE2STgKP9mM/XiDG/1ywkJwinSSQVzTCEt3v6BvjO9DyDg7l2uF60qdzXCY5qL/
|
||||
3jdrkFSp
|
||||
-----END AGE ENCRYPTED FILE-----
|
||||
"""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: -i/--identity can't be used with passphrase-encrypted files.
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage"
|
||||
args = "--decrypt --identity key.txt -j plugin-name"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: -i/--identity can't be used with -j.
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
12
rage/tests/cmd/rage/decrypt-passphrase-flag.toml
Normal file
12
rage/tests/cmd/rage/decrypt-passphrase-flag.toml
Normal file
|
@ -0,0 +1,12 @@
|
|||
bin.name = "rage"
|
||||
args = "--decrypt --passphrase"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: -p/--passphrase can't be used with -d/--decrypt.
|
||||
Note that passphrase-encrypted files are detected automatically.
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
12
rage/tests/cmd/rage/decrypt-recipient-flag.toml
Normal file
12
rage/tests/cmd/rage/decrypt-recipient-flag.toml
Normal file
|
@ -0,0 +1,12 @@
|
|||
bin.name = "rage"
|
||||
args = "--decrypt -r foobar"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: -r/--recipient can't be used with -d/--decrypt.
|
||||
Did you mean to use -i/--identity to specify a private key?
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
12
rage/tests/cmd/rage/decrypt-recipients-file-flag.toml
Normal file
12
rage/tests/cmd/rage/decrypt-recipients-file-flag.toml
Normal file
|
@ -0,0 +1,12 @@
|
|||
bin.name = "rage"
|
||||
args = "--decrypt -R foobar.txt"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: -R/--recipients-file can't be used with -d/--decrypt.
|
||||
Did you mean to use -i/--identity to specify a private key?
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
3
rage/tests/cmd/rage/decrypt-stdin-stdout-long.in/key.txt
Normal file
3
rage/tests/cmd/rage/decrypt-stdin-stdout-long.in/key.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
# created: 2024-01-07T22:30:16Z
|
||||
# public key: age1g8g50ksmsfxuv4rpyhlnau8tx87y2xz8v4agzs2vltcxlssy2qwqq6qc4t
|
||||
AGE-SECRET-KEY-1SRQGS50G584HFA5JG9D6D9S6639VVHJUE5XHHKJET9DRU76HK4RQP0X5Q3
|
16
rage/tests/cmd/rage/decrypt-stdin-stdout-long.toml
Normal file
16
rage/tests/cmd/rage/decrypt-stdin-stdout-long.toml
Normal file
|
@ -0,0 +1,16 @@
|
|||
bin.name = "rage"
|
||||
args = "--decrypt --identity key.txt"
|
||||
stdin = """
|
||||
-----BEGIN AGE ENCRYPTED FILE-----
|
||||
YWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBHUGc3Zlhpekp0K012aXdu
|
||||
T1VZN0lmWlRmNjdLYVB4RldkTFVLTkNDUXlBCmJjRUcrM3E0a0U0N3IyK1JsTitG
|
||||
dHVTd0N6TVFRTWgzdG5uSzJmNm9YMTgKLT4gQXQ1WWAtZ3JlYXNlIDxodGFSVHJg
|
||||
IFg0cWYsO0ogZ2Fzc1EKZGtPSTB3Ci0tLSBKazRIaHJxdnNJcHpyclRkQjg3QW5r
|
||||
SVE2MHdtWkErYTNrNWJibWd1bmNBCkK9FoOkiLB93gD79vNed8L3LM9rhKm5qma2
|
||||
lSiwRx/aM1DKaZO0CMmYQkoM2tPReA==
|
||||
-----END AGE ENCRYPTED FILE-----
|
||||
"""
|
||||
stdout = """
|
||||
Test plaintext.
|
||||
"""
|
||||
stderr = ""
|
|
@ -0,0 +1,3 @@
|
|||
# created: 2024-01-07T22:30:16Z
|
||||
# public key: age1g8g50ksmsfxuv4rpyhlnau8tx87y2xz8v4agzs2vltcxlssy2qwqq6qc4t
|
||||
AGE-SECRET-KEY-1SRQGS50G584HFA5JG9D6D9S6639VVHJUE5XHHKJET9DRU76HK4RQP0X5Q3
|
16
rage/tests/cmd/rage/decrypt-stdin-stdout-short.toml
Normal file
16
rage/tests/cmd/rage/decrypt-stdin-stdout-short.toml
Normal file
|
@ -0,0 +1,16 @@
|
|||
bin.name = "rage"
|
||||
args = "-d -i key.txt"
|
||||
stdin = """
|
||||
-----BEGIN AGE ENCRYPTED FILE-----
|
||||
YWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBHUGc3Zlhpekp0K012aXdu
|
||||
T1VZN0lmWlRmNjdLYVB4RldkTFVLTkNDUXlBCmJjRUcrM3E0a0U0N3IyK1JsTitG
|
||||
dHVTd0N6TVFRTWgzdG5uSzJmNm9YMTgKLT4gQXQ1WWAtZ3JlYXNlIDxodGFSVHJg
|
||||
IFg0cWYsO0ogZ2Fzc1EKZGtPSTB3Ci0tLSBKazRIaHJxdnNJcHpyclRkQjg3QW5r
|
||||
SVE2MHdtWkErYTNrNWJibWd1bmNBCkK9FoOkiLB93gD79vNed8L3LM9rhKm5qma2
|
||||
lSiwRx/aM1DKaZO0CMmYQkoM2tPReA==
|
||||
-----END AGE ENCRYPTED FILE-----
|
||||
"""
|
||||
stdout = """
|
||||
Test plaintext.
|
||||
"""
|
||||
stderr = ""
|
|
@ -0,0 +1,8 @@
|
|||
-----BEGIN AGE ENCRYPTED FILE-----
|
||||
YWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBHUGc3Zlhpekp0K012aXdu
|
||||
T1VZN0lmWlRmNjdLYVB4RldkTFVLTkNDUXlBCmJjRUcrM3E0a0U0N3IyK1JsTitG
|
||||
dHVTd0N6TVFRTWgzdG5uSzJmNm9YMTgKLT4gQXQ1WWAtZ3JlYXNlIDxodGFSVHJg
|
||||
IFg0cWYsO0ogZ2Fzc1EKZGtPSTB3Ci0tLSBKazRIaHJxdnNJcHpyclRkQjg3QW5r
|
||||
SVE2MHdtWkErYTNrNWJibWd1bmNBCkK9FoOkiLB93gD79vNed8L3LM9rhKm5qma2
|
||||
lSiwRx/aM1DKaZO0CMmYQkoM2tPReA==
|
||||
-----END AGE ENCRYPTED FILE-----
|
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage"
|
||||
args = "--encrypt -i key.age.txt"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: Identity file 'key.age.txt' is encrypted with age but not with a passphrase.
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
11
rage/tests/cmd/rage/encrypt-invalid-recipient.toml
Normal file
11
rage/tests/cmd/rage/encrypt-invalid-recipient.toml
Normal file
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage"
|
||||
args = "--encrypt --recipient foobar"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: Invalid recipient 'foobar'
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
|
@ -0,0 +1 @@
|
|||
foobar
|
11
rage/tests/cmd/rage/encrypt-invalid-recipients-file.toml
Normal file
11
rage/tests/cmd/rage/encrypt-invalid-recipients-file.toml
Normal file
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage"
|
||||
args = "--encrypt -R recipients.txt"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: recipients file recipients.txt contains non-recipient data on line 1
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
11
rage/tests/cmd/rage/encrypt-missing-recipients-file.toml
Normal file
11
rage/tests/cmd/rage/encrypt-missing-recipients-file.toml
Normal file
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage"
|
||||
args = "--encrypt -R foobar.txt"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: No such file or directory (os error 2)
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
12
rage/tests/cmd/rage/encrypt-missing-recipients.toml
Normal file
12
rage/tests/cmd/rage/encrypt-missing-recipients.toml
Normal file
|
@ -0,0 +1,12 @@
|
|||
bin.name = "rage"
|
||||
args = "--encrypt"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: Missing recipients.
|
||||
Did you forget to specify -r/--recipient?
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage"
|
||||
args = "--encrypt --identity key.txt --passphrase"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: -i/--identity can't be used with -p/--passphrase.
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage"
|
||||
args = "-e -r foobar -p"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: -r/--recipient can't be used with -p/--passphrase
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage"
|
||||
args = "-e -R foobar.txt -p"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: -R/--recipients-file can't be used with -p/--passphrase
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage"
|
||||
args = "-p"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: File to encrypt must be passed as an argument when using -p/--passphrase
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
11
rage/tests/cmd/rage/encrypt-plugin-name-flag.toml
Normal file
11
rage/tests/cmd/rage/encrypt-plugin-name-flag.toml
Normal file
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage"
|
||||
args = "-e -j plugin-name"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: -j can't be used with -e/--encrypt.
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
45
rage/tests/cmd/rage/help.toml
Normal file
45
rage/tests/cmd/rage/help.toml
Normal file
|
@ -0,0 +1,45 @@
|
|||
bin.name = "rage"
|
||||
args = "--help"
|
||||
stdout = """
|
||||
Usage:
|
||||
[..]rage[EXE] [--encrypt] -r RECIPIENT [-i IDENTITY] [-a] [-o OUTPUT] [INPUT]
|
||||
[..]rage[EXE] --decrypt [-i IDENTITY] [-o OUTPUT] [INPUT]
|
||||
|
||||
Positional arguments:
|
||||
input Path to a file to read from.
|
||||
|
||||
Optional arguments:
|
||||
-h, --help Print this help message and exit.
|
||||
-V, --version Print version info and exit.
|
||||
-e, --encrypt Encrypt the input (the default).
|
||||
-d, --decrypt Decrypt the input.
|
||||
-p, --passphrase Encrypt with a passphrase instead of recipients.
|
||||
--max-work-factor WF Maximum work factor to allow for passphrase decryption.
|
||||
-a, --armor Encrypt to a PEM encoded format.
|
||||
-r, --recipient RECIPIENT Encrypt to the specified RECIPIENT. May be repeated.
|
||||
-R, --recipients-file PATH Encrypt to the recipients listed at PATH. May be repeated.
|
||||
-i, --identity IDENTITY Use the identity file at IDENTITY. May be repeated.
|
||||
-j PLUGIN-NAME Use age-plugin-PLUGIN-NAME in its default mode as an identity.
|
||||
-o, --output OUTPUT Write the result to the file at path OUTPUT.
|
||||
|
||||
INPUT defaults to standard input, and OUTPUT defaults to standard output.
|
||||
|
||||
RECIPIENT can be:
|
||||
- An age public key, as generated by [..]rage-keygen ("age1...").
|
||||
- An SSH public key ("ssh-ed25519 AAAA...", "ssh-rsa AAAA...").
|
||||
|
||||
PATH is a path to a file containing age recipients, one per line
|
||||
(ignoring "#" prefixed comments and empty lines).
|
||||
|
||||
IDENTITY is a path to a file with age identities, one per line
|
||||
(ignoring "#" prefixed comments and empty lines), or to an SSH key file.
|
||||
Passphrase-encrypted age identity files can be used as identity files.
|
||||
Multiple identities may be provided, and any unused ones will be ignored.
|
||||
|
||||
Example:
|
||||
$ [..]rage-keygen -o key.txt
|
||||
Public key: age1ql3z7hjy54pw3hyww5ayyfg7zqgvc7w3j2elw8zmrj2kg5sfn9aqmcac8p
|
||||
$ tar cvz ~/data | [..]rage -r age1ql3z7hjy54pw3hyww5ayyfg7zqgvc7w3j2elw8zmrj2kg5sfn9aqmcac8p > data.tar.gz.age
|
||||
$ [..]rage -d -i key.txt -o data.tar.gz data.tar.gz.age
|
||||
"""
|
||||
stderr = ""
|
48
rage/tests/cmd/rage/help_it.toml
Normal file
48
rage/tests/cmd/rage/help_it.toml
Normal file
|
@ -0,0 +1,48 @@
|
|||
bin.name = "rage"
|
||||
args = "--help"
|
||||
env.add.LANG = "it"
|
||||
stdout = """
|
||||
Usage:
|
||||
[..]rage[EXE] [--encrypt] -r RECIPIENT [-i IDENTITY] [-a] [-o OUTPUT] [INPUT]
|
||||
[..]rage[EXE] --decrypt [-i IDENTITY] [-o OUTPUT] [INPUT]
|
||||
|
||||
Positional arguments:
|
||||
input Path to a file to read from.
|
||||
|
||||
Optional arguments:
|
||||
-h, --help Print this help message and exit.
|
||||
-V, --version Print version info and exit.
|
||||
-e, --encrypt Encrypt the input (the default).
|
||||
-d, --decrypt Decrypt the input.
|
||||
-p, --passphrase Encrypt with a passphrase instead of recipients.
|
||||
--max-work-factor WF Maximum work factor to allow for passphrase decryption.
|
||||
-a, --armor Encrypt to a PEM encoded format.
|
||||
-r, --recipient RECIPIENT Encrypt to the specified RECIPIENT. May be repeated.
|
||||
-R, --recipients-file PATH Encrypt to the recipients listed at PATH. May be repeated.
|
||||
-i, --identity IDENTITY Use the identity file at IDENTITY. May be repeated.
|
||||
-j PLUGIN-NAME Use age-plugin-PLUGIN-NAME in its default mode as an identity.
|
||||
-o, --output OUTPUT Write the result to the file at path OUTPUT.
|
||||
|
||||
INPUT ha come valore predefinito lo standard input, e OUTPUT ha come
|
||||
valore predefinito lo standard output.
|
||||
|
||||
RECIPIENT può essere:
|
||||
- Una chiave pubblica age, come generata da [..]rage-keygen ("age1...").
|
||||
- Una chiave pubblica SSH ("ssh-ed25519 AAAA...", "ssh-rsa AAAA...").
|
||||
|
||||
PATH è il percorso ad un file contenente dei destinatari age,
|
||||
uno per riga (ignorando i commenti che iniziano con "#" e le righe vuote).
|
||||
|
||||
IDENTITY è il percorso ad un file contenente identità age, una per
|
||||
riga (ignorando i commenti che iniziano con "#" e le righe vuote), o ad un
|
||||
file contenente una chiave SSH.
|
||||
I file di identità possono essere cifrati con age e una passphrase.
|
||||
Possono essere fornite più identità, quelle inutilizzate verranno ignorate.
|
||||
|
||||
Esempio:
|
||||
$ [..]rage-keygen -o key.txt
|
||||
Chiave pubblica: age1ql3z7hjy54pw3hyww5ayyfg7zqgvc7w3j2elw8zmrj2kg5sfn9aqmcac8p
|
||||
$ tar cvz ~/data | [..]rage -r age1ql3z7hjy54pw3hyww5ayyfg7zqgvc7w3j2elw8zmrj2kg5sfn9aqmcac8p > data.tar.gz.age
|
||||
$ [..]rage -d -i key.txt -o data.tar.gz data.tar.gz.age
|
||||
"""
|
||||
stderr = ""
|
11
rage/tests/cmd/rage/identity-flag-ambiguous.toml
Normal file
11
rage/tests/cmd/rage/identity-flag-ambiguous.toml
Normal file
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage"
|
||||
args = "-i key.txt"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: -i/--identity requires either -e/--encrypt or -d/--decrypt.
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
11
rage/tests/cmd/rage/mixed-encrypt-and-decrypt.toml
Normal file
11
rage/tests/cmd/rage/mixed-encrypt-and-decrypt.toml
Normal file
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage"
|
||||
args = "--encrypt --decrypt"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: -e/--encrypt can't be used with -d/--decrypt.
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
0
rage/tests/cmd/rage/same-input-and-output.in/same.txt
Normal file
0
rage/tests/cmd/rage/same-input-and-output.in/same.txt
Normal file
11
rage/tests/cmd/rage/same-input-and-output.toml
Normal file
11
rage/tests/cmd/rage/same-input-and-output.toml
Normal file
|
@ -0,0 +1,11 @@
|
|||
bin.name = "rage"
|
||||
args = "-r foobar -o same.txt same.txt"
|
||||
status = "failed"
|
||||
stdin = ""
|
||||
stdout = ""
|
||||
stderr = """
|
||||
Error: Input and output are the same file 'same.txt'.
|
||||
|
||||
[ Did rage not do what you expected? Could an error be more useful? ]
|
||||
[ Tell us: https://str4d.xyz/rage/report ]
|
||||
"""
|
6
rage/tests/cmd/rage/version.toml
Normal file
6
rage/tests/cmd/rage/version.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
bin.name = "rage"
|
||||
args = "--version"
|
||||
stdout = """
|
||||
rage 0.9.2
|
||||
"""
|
||||
stderr = ""
|
|
@ -65,10 +65,26 @@ criteria = "safe-to-deploy"
|
|||
version = "0.1.1"
|
||||
criteria = "safe-to-deploy"
|
||||
|
||||
[[exemptions.anstream]]
|
||||
version = "0.3.2"
|
||||
criteria = "safe-to-run"
|
||||
|
||||
[[exemptions.anstyle]]
|
||||
version = "1.0.2"
|
||||
criteria = "safe-to-run"
|
||||
|
||||
[[exemptions.anstyle-parse]]
|
||||
version = "0.2.1"
|
||||
criteria = "safe-to-run"
|
||||
|
||||
[[exemptions.anstyle-query]]
|
||||
version = "1.0.0"
|
||||
criteria = "safe-to-run"
|
||||
|
||||
[[exemptions.anstyle-wincon]]
|
||||
version = "1.0.2"
|
||||
criteria = "safe-to-run"
|
||||
|
||||
[[exemptions.arc-swap]]
|
||||
version = "1.6.0"
|
||||
criteria = "safe-to-deploy"
|
||||
|
@ -177,6 +193,10 @@ criteria = "safe-to-deploy"
|
|||
version = "0.1.5"
|
||||
criteria = "safe-to-deploy"
|
||||
|
||||
[[exemptions.content_inspector]]
|
||||
version = "0.2.4"
|
||||
criteria = "safe-to-run"
|
||||
|
||||
[[exemptions.cookie-factory]]
|
||||
version = "0.3.2"
|
||||
criteria = "safe-to-deploy"
|
||||
|
@ -237,6 +257,10 @@ criteria = "safe-to-deploy"
|
|||
version = "0.9.0"
|
||||
criteria = "safe-to-deploy"
|
||||
|
||||
[[exemptions.dunce]]
|
||||
version = "1.0.4"
|
||||
criteria = "safe-to-run"
|
||||
|
||||
[[exemptions.encode_unicode]]
|
||||
version = "0.3.6"
|
||||
criteria = "safe-to-deploy"
|
||||
|
@ -345,6 +369,10 @@ criteria = "safe-to-deploy"
|
|||
version = "2.1.0"
|
||||
criteria = "safe-to-deploy"
|
||||
|
||||
[[exemptions.humantime-serde]]
|
||||
version = "1.1.1"
|
||||
criteria = "safe-to-run"
|
||||
|
||||
[[exemptions.i18n-config]]
|
||||
version = "0.4.5"
|
||||
criteria = "safe-to-deploy"
|
||||
|
@ -461,6 +489,10 @@ criteria = "safe-to-run"
|
|||
version = "1.15.0"
|
||||
criteria = "safe-to-deploy"
|
||||
|
||||
[[exemptions.os_pipe]]
|
||||
version = "1.1.5"
|
||||
criteria = "safe-to-run"
|
||||
|
||||
[[exemptions.page_size]]
|
||||
version = "0.5.0"
|
||||
criteria = "safe-to-deploy"
|
||||
|
@ -669,6 +701,14 @@ criteria = "safe-to-deploy"
|
|||
version = "0.10.8"
|
||||
criteria = "safe-to-deploy"
|
||||
|
||||
[[exemptions.shlex]]
|
||||
version = "1.2.0"
|
||||
criteria = "safe-to-run"
|
||||
|
||||
[[exemptions.similar]]
|
||||
version = "2.4.0"
|
||||
criteria = "safe-to-run"
|
||||
|
||||
[[exemptions.slab]]
|
||||
version = "0.4.9"
|
||||
criteria = "safe-to-deploy"
|
||||
|
@ -677,6 +717,14 @@ criteria = "safe-to-deploy"
|
|||
version = "1.11.2"
|
||||
criteria = "safe-to-deploy"
|
||||
|
||||
[[exemptions.snapbox]]
|
||||
version = "0.4.11"
|
||||
criteria = "safe-to-run"
|
||||
|
||||
[[exemptions.snapbox-macros]]
|
||||
version = "0.3.4"
|
||||
criteria = "safe-to-run"
|
||||
|
||||
[[exemptions.spin]]
|
||||
version = "0.5.2"
|
||||
criteria = "safe-to-deploy"
|
||||
|
@ -761,6 +809,10 @@ criteria = "safe-to-deploy"
|
|||
version = "0.19.14"
|
||||
criteria = "safe-to-deploy"
|
||||
|
||||
[[exemptions.trycmd]]
|
||||
version = "0.14.16"
|
||||
criteria = "safe-to-run"
|
||||
|
||||
[[exemptions.type-map]]
|
||||
version = "0.4.0"
|
||||
criteria = "safe-to-deploy"
|
||||
|
|
|
@ -447,6 +447,12 @@ who = "Pat Hickey <phickey@fastly.com>"
|
|||
criteria = "safe-to-deploy"
|
||||
version = "1.0.8"
|
||||
|
||||
[[audits.embark-studios.audits.colorchoice]]
|
||||
who = "Johan Andersson <opensource@embark-studios.com>"
|
||||
criteria = "safe-to-deploy"
|
||||
version = "1.0.0"
|
||||
notes = "No unsafe usage or ambient capabilities"
|
||||
|
||||
[[audits.embark-studios.audits.thiserror]]
|
||||
who = "Johan Andersson <opensource@embark-studios.com>"
|
||||
criteria = "safe-to-deploy"
|
||||
|
@ -465,6 +471,12 @@ criteria = "safe-to-deploy"
|
|||
delta = "0.6.1 -> 0.6.2"
|
||||
notes = "No notable changes"
|
||||
|
||||
[[audits.embark-studios.audits.utf8parse]]
|
||||
who = "Johan Andersson <opensource@embark-studios.com>"
|
||||
criteria = "safe-to-deploy"
|
||||
version = "0.2.1"
|
||||
notes = "Single unsafe usage that looks sound, no ambient capabilities"
|
||||
|
||||
[[audits.fermyon.audits.oorandom]]
|
||||
who = "Radu Matei <radu.matei@fermyon.com>"
|
||||
criteria = "safe-to-run"
|
||||
|
@ -522,6 +534,12 @@ that the RNG here is not cryptographically secure.
|
|||
"""
|
||||
aggregated-from = "https://chromium.googlesource.com/chromiumos/third_party/rust_crates/+/refs/heads/main/cargo-vet/audits.toml?format=TEXT"
|
||||
|
||||
[[audits.google.audits.glob]]
|
||||
who = "George Burgess IV <gbiv@google.com>"
|
||||
criteria = "safe-to-deploy"
|
||||
version = "0.3.1"
|
||||
aggregated-from = "https://chromium.googlesource.com/chromiumos/third_party/rust_crates/+/refs/heads/main/cargo-vet/audits.toml?format=TEXT"
|
||||
|
||||
[[audits.google.audits.itertools]]
|
||||
who = "ChromeOS"
|
||||
criteria = "safe-to-run"
|
||||
|
@ -566,6 +584,12 @@ Issues:
|
|||
"""
|
||||
aggregated-from = "https://fuchsia.googlesource.com/fuchsia/+/refs/heads/main/third_party/rust_crates/supply-chain/audits.toml?format=TEXT"
|
||||
|
||||
[[audits.google.audits.normalize-line-endings]]
|
||||
who = "Max Lee <endlesspring@google.com>"
|
||||
criteria = "safe-to-run"
|
||||
version = "0.3.0"
|
||||
aggregated-from = "https://chromium.googlesource.com/chromiumos/third_party/rust_crates/+/refs/heads/main/cargo-vet/audits.toml?format=TEXT"
|
||||
|
||||
[[audits.google.audits.pin-project-lite]]
|
||||
who = "David Koloski <dkoloski@google.com>"
|
||||
criteria = "safe-to-deploy"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue