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() {}