├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .pre-commit-hooks.yaml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── assets └── sosecrets-rs-logowebp.webp ├── examples └── jwt │ ├── .env │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ └── src │ ├── lib.rs │ └── main.rs ├── scripts ├── build-ver-tests.rs ├── check-all-features.sh ├── clippy-all-features.sh ├── package-all-features.sh ├── tests-all-features-1.70.sh └── tests-all-features.sh ├── src ├── lib.rs ├── macros.rs ├── runtime.rs ├── runtime │ ├── error.rs │ ├── secret.rs │ └── traits.rs ├── secret.rs ├── traits.rs └── types.rs ├── tests ├── common.rs ├── extern_bin.rs ├── extern_bin_rt.rs ├── trybuild_tests.rs ├── trybuild_tests_1_70.rs ├── trybuild_tests_rt.rs └── trybuild_tests_rt_1_70.rs └── trybuild_tests ├── 1_70 ├── common.rs ├── runtime │ ├── cannot_call_debug_clone_alloc_if_not_use.rs │ ├── cannot_call_debug_clone_alloc_if_not_use.stderr │ ├── cannot_cross_unwind_if_not_copy.rs │ ├── cannot_cross_unwind_if_not_copy.stderr │ ├── cannot_impl_minimally_representable_uints.rs │ ├── cannot_return_exposed_secret.rs │ ├── cannot_return_exposed_secret.stderr │ ├── u0_cannot_call_expose_secret.rs │ └── u0_cannot_call_expose_secret.stderr ├── test_cannot_return_exposed_secret.rs ├── test_cannot_return_exposed_secret.stderr ├── test_compile_fail_eight.rs ├── test_compile_fail_eight.stderr ├── test_compile_fail_five.rs ├── test_compile_fail_five.stderr ├── test_compile_fail_four.rs ├── test_compile_fail_four.stderr ├── test_compile_fail_nine.rs ├── test_compile_fail_nine.stderr ├── test_compile_fail_one.rs ├── test_compile_fail_one.stderr ├── test_compile_fail_seven.rs ├── test_compile_fail_seven.stderr ├── test_compile_fail_six.rs ├── test_compile_fail_six.stderr ├── test_compile_fail_ten.rs ├── test_compile_fail_three.rs ├── test_compile_fail_three.stderr ├── test_compile_fail_two.rs ├── test_compile_fail_two.stderr ├── test_compile_pass_one.rs ├── test_compile_pass_three.rs ├── test_compile_pass_two.rs ├── test_panic_cannot_return_exposed.rs ├── test_panic_cannot_return_exposed.stderr ├── test_ref_cannot_leak_secret.rs └── test_ref_cannot_leak_secret.stderr ├── common.rs ├── runtime ├── cannot_call_debug_clone_alloc_if_not_use.rs ├── cannot_call_debug_clone_alloc_if_not_use.stderr ├── cannot_cross_unwind_if_not_copy.rs ├── cannot_cross_unwind_if_not_copy.stderr ├── cannot_impl_minimally_representable_uints.rs ├── cannot_impl_minimally_representable_uints.stderr ├── cannot_return_exposed_secret.rs ├── cannot_return_exposed_secret.stderr ├── u0_cannot_call_expose_secret.rs └── u0_cannot_call_expose_secret.stderr ├── test_cannot_return_exposed_secret.rs ├── test_cannot_return_exposed_secret.stderr ├── test_compile_fail_eight.rs ├── test_compile_fail_eight.stderr ├── test_compile_fail_five.rs ├── test_compile_fail_five.stderr ├── test_compile_fail_four.rs ├── test_compile_fail_four.stderr ├── test_compile_fail_nine.rs ├── test_compile_fail_nine.stderr ├── test_compile_fail_one.rs ├── test_compile_fail_one.stderr ├── test_compile_fail_seven.rs ├── test_compile_fail_seven.stderr ├── test_compile_fail_six.rs ├── test_compile_fail_six.stderr ├── test_compile_fail_ten.rs ├── test_compile_fail_ten.stderr ├── test_compile_fail_three.rs ├── test_compile_fail_three.stderr ├── test_compile_fail_two.rs ├── test_compile_fail_two.stderr ├── test_compile_pass_one.rs ├── test_compile_pass_three.rs ├── test_compile_pass_two.rs ├── test_panic_cannot_return_exposed.rs ├── test_panic_cannot_return_exposed.stderr ├── test_ref_cannot_leak_secret.rs └── test_ref_cannot_leak_secret.stderr /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | notes.txt 4 | .vscode 5 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/README.md -------------------------------------------------------------------------------- /assets/sosecrets-rs-logowebp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/assets/sosecrets-rs-logowebp.webp -------------------------------------------------------------------------------- /examples/jwt/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/examples/jwt/.env -------------------------------------------------------------------------------- /examples/jwt/.gitignore: -------------------------------------------------------------------------------- 1 | target/* -------------------------------------------------------------------------------- /examples/jwt/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/examples/jwt/Cargo.lock -------------------------------------------------------------------------------- /examples/jwt/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/examples/jwt/Cargo.toml -------------------------------------------------------------------------------- /examples/jwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/examples/jwt/README.md -------------------------------------------------------------------------------- /examples/jwt/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/examples/jwt/src/lib.rs -------------------------------------------------------------------------------- /examples/jwt/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/examples/jwt/src/main.rs -------------------------------------------------------------------------------- /scripts/build-ver-tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/scripts/build-ver-tests.rs -------------------------------------------------------------------------------- /scripts/check-all-features.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/scripts/check-all-features.sh -------------------------------------------------------------------------------- /scripts/clippy-all-features.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/scripts/clippy-all-features.sh -------------------------------------------------------------------------------- /scripts/package-all-features.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/scripts/package-all-features.sh -------------------------------------------------------------------------------- /scripts/tests-all-features-1.70.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/scripts/tests-all-features-1.70.sh -------------------------------------------------------------------------------- /scripts/tests-all-features.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/scripts/tests-all-features.sh -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/src/macros.rs -------------------------------------------------------------------------------- /src/runtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/src/runtime.rs -------------------------------------------------------------------------------- /src/runtime/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/src/runtime/error.rs -------------------------------------------------------------------------------- /src/runtime/secret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/src/runtime/secret.rs -------------------------------------------------------------------------------- /src/runtime/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/src/runtime/traits.rs -------------------------------------------------------------------------------- /src/secret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/src/secret.rs -------------------------------------------------------------------------------- /src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/src/traits.rs -------------------------------------------------------------------------------- /src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/src/types.rs -------------------------------------------------------------------------------- /tests/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/tests/common.rs -------------------------------------------------------------------------------- /tests/extern_bin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/tests/extern_bin.rs -------------------------------------------------------------------------------- /tests/extern_bin_rt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/tests/extern_bin_rt.rs -------------------------------------------------------------------------------- /tests/trybuild_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/tests/trybuild_tests.rs -------------------------------------------------------------------------------- /tests/trybuild_tests_1_70.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/tests/trybuild_tests_1_70.rs -------------------------------------------------------------------------------- /tests/trybuild_tests_rt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/tests/trybuild_tests_rt.rs -------------------------------------------------------------------------------- /tests/trybuild_tests_rt_1_70.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/tests/trybuild_tests_rt_1_70.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/common.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/runtime/cannot_call_debug_clone_alloc_if_not_use.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/runtime/cannot_call_debug_clone_alloc_if_not_use.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/runtime/cannot_call_debug_clone_alloc_if_not_use.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/runtime/cannot_call_debug_clone_alloc_if_not_use.stderr -------------------------------------------------------------------------------- /trybuild_tests/1_70/runtime/cannot_cross_unwind_if_not_copy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/runtime/cannot_cross_unwind_if_not_copy.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/runtime/cannot_cross_unwind_if_not_copy.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/runtime/cannot_cross_unwind_if_not_copy.stderr -------------------------------------------------------------------------------- /trybuild_tests/1_70/runtime/cannot_impl_minimally_representable_uints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/runtime/cannot_impl_minimally_representable_uints.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/runtime/cannot_return_exposed_secret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/runtime/cannot_return_exposed_secret.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/runtime/cannot_return_exposed_secret.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/runtime/cannot_return_exposed_secret.stderr -------------------------------------------------------------------------------- /trybuild_tests/1_70/runtime/u0_cannot_call_expose_secret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/runtime/u0_cannot_call_expose_secret.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/runtime/u0_cannot_call_expose_secret.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/runtime/u0_cannot_call_expose_secret.stderr -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_cannot_return_exposed_secret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_cannot_return_exposed_secret.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_cannot_return_exposed_secret.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_cannot_return_exposed_secret.stderr -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_eight.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_eight.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_eight.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_eight.stderr -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_five.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_five.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_five.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_five.stderr -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_four.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_four.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_four.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_four.stderr -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_nine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_nine.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_nine.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_nine.stderr -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_one.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_one.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_one.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_one.stderr -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_seven.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_seven.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_seven.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_seven.stderr -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_six.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_six.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_six.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_six.stderr -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_ten.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_ten.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_three.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_three.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_three.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_three.stderr -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_two.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_two.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_fail_two.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_fail_two.stderr -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_pass_one.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_pass_one.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_pass_three.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_pass_three.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_compile_pass_two.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_compile_pass_two.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_panic_cannot_return_exposed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_panic_cannot_return_exposed.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_panic_cannot_return_exposed.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_panic_cannot_return_exposed.stderr -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_ref_cannot_leak_secret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_ref_cannot_leak_secret.rs -------------------------------------------------------------------------------- /trybuild_tests/1_70/test_ref_cannot_leak_secret.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/1_70/test_ref_cannot_leak_secret.stderr -------------------------------------------------------------------------------- /trybuild_tests/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/common.rs -------------------------------------------------------------------------------- /trybuild_tests/runtime/cannot_call_debug_clone_alloc_if_not_use.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/runtime/cannot_call_debug_clone_alloc_if_not_use.rs -------------------------------------------------------------------------------- /trybuild_tests/runtime/cannot_call_debug_clone_alloc_if_not_use.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/runtime/cannot_call_debug_clone_alloc_if_not_use.stderr -------------------------------------------------------------------------------- /trybuild_tests/runtime/cannot_cross_unwind_if_not_copy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/runtime/cannot_cross_unwind_if_not_copy.rs -------------------------------------------------------------------------------- /trybuild_tests/runtime/cannot_cross_unwind_if_not_copy.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/runtime/cannot_cross_unwind_if_not_copy.stderr -------------------------------------------------------------------------------- /trybuild_tests/runtime/cannot_impl_minimally_representable_uints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/runtime/cannot_impl_minimally_representable_uints.rs -------------------------------------------------------------------------------- /trybuild_tests/runtime/cannot_impl_minimally_representable_uints.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/runtime/cannot_impl_minimally_representable_uints.stderr -------------------------------------------------------------------------------- /trybuild_tests/runtime/cannot_return_exposed_secret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/runtime/cannot_return_exposed_secret.rs -------------------------------------------------------------------------------- /trybuild_tests/runtime/cannot_return_exposed_secret.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/runtime/cannot_return_exposed_secret.stderr -------------------------------------------------------------------------------- /trybuild_tests/runtime/u0_cannot_call_expose_secret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/runtime/u0_cannot_call_expose_secret.rs -------------------------------------------------------------------------------- /trybuild_tests/runtime/u0_cannot_call_expose_secret.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/runtime/u0_cannot_call_expose_secret.stderr -------------------------------------------------------------------------------- /trybuild_tests/test_cannot_return_exposed_secret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_cannot_return_exposed_secret.rs -------------------------------------------------------------------------------- /trybuild_tests/test_cannot_return_exposed_secret.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_cannot_return_exposed_secret.stderr -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_eight.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_eight.rs -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_eight.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_eight.stderr -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_five.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_five.rs -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_five.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_five.stderr -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_four.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_four.rs -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_four.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_four.stderr -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_nine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_nine.rs -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_nine.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_nine.stderr -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_one.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_one.rs -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_one.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_one.stderr -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_seven.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_seven.rs -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_seven.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_seven.stderr -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_six.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_six.rs -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_six.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_six.stderr -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_ten.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_ten.rs -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_ten.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_ten.stderr -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_three.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_three.rs -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_three.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_three.stderr -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_two.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_two.rs -------------------------------------------------------------------------------- /trybuild_tests/test_compile_fail_two.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_fail_two.stderr -------------------------------------------------------------------------------- /trybuild_tests/test_compile_pass_one.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_pass_one.rs -------------------------------------------------------------------------------- /trybuild_tests/test_compile_pass_three.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_pass_three.rs -------------------------------------------------------------------------------- /trybuild_tests/test_compile_pass_two.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_compile_pass_two.rs -------------------------------------------------------------------------------- /trybuild_tests/test_panic_cannot_return_exposed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_panic_cannot_return_exposed.rs -------------------------------------------------------------------------------- /trybuild_tests/test_panic_cannot_return_exposed.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_panic_cannot_return_exposed.stderr -------------------------------------------------------------------------------- /trybuild_tests/test_ref_cannot_leak_secret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_ref_cannot_leak_secret.rs -------------------------------------------------------------------------------- /trybuild_tests/test_ref_cannot_leak_secret.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jymchng/sosecrets-rs/HEAD/trybuild_tests/test_ref_cannot_leak_secret.stderr --------------------------------------------------------------------------------