From f1cf388a587f3e82ec4748d138bee5578444f5cd Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Tue, 13 Feb 2024 11:43:33 +0100 Subject: [PATCH] ok... --- .cargo/deny.toml | 2 ++ .github/workflows/test.yml | 4 ++-- Cargo.toml | 6 ++++++ src/main.rs | 1 + 4 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 .cargo/deny.toml create mode 100644 Cargo.toml create mode 100644 src/main.rs diff --git a/.cargo/deny.toml b/.cargo/deny.toml new file mode 100644 index 0000000..2e64ced --- /dev/null +++ b/.cargo/deny.toml @@ -0,0 +1,2 @@ +[bans] +deny = [{ name = "openssl" }] diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bc40788..b87deb6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,5 +23,5 @@ jobs: steps: - uses: actions/checkout@v4 - uses: EmbarkStudios/cargo-deny-action@v1 - with: - manifest-path: test/Cargo.toml \ No newline at end of file + # with: + # manifest-path: test/Cargo.toml \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..1dcfb7d --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "root" +version = "0.1.0" + +[dependencies] +openssl = "0.10" diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..f328e4d --- /dev/null +++ b/src/main.rs @@ -0,0 +1 @@ +fn main() {}