From 8b4d452088e440f34bb61a341e7cf83b01ac3d67 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Fri, 17 Mar 2023 10:50:56 +0900 Subject: Import bssl-sys 0.1.0 --- .cargo_vcs_info.json | 6 ++++++ .gitignore | 2 ++ Cargo.toml | 19 +++++++++++++++++++ Cargo.toml.orig | 7 +++++++ README.md | 9 +++++++++ src/lib.rs | 1 + 6 files changed, 44 insertions(+) create mode 100644 .cargo_vcs_info.json create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 Cargo.toml.orig create mode 100644 README.md create mode 100644 src/lib.rs diff --git a/.cargo_vcs_info.json b/.cargo_vcs_info.json new file mode 100644 index 0000000..3f7857e --- /dev/null +++ b/.cargo_vcs_info.json @@ -0,0 +1,6 @@ +{ + "git": { + "sha1": "0d2780c02a2f7ad9057c91899fe09dff60de2fb3" + }, + "path_in_vcs": "" +} \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4fffb2f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +/Cargo.lock diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..5421419 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,19 @@ +# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO +# +# When uploading crates to the registry Cargo will automatically +# "normalize" Cargo.toml files for maximal compatibility +# with all versions of Cargo and also rewrite `path` dependencies +# to registry (e.g., crates.io) dependencies. +# +# If you are reading this file be aware that the original Cargo.toml +# will likely look very different (and much more reasonable). +# See Cargo.toml.orig for the original contents. + +[package] +edition = "2021" +name = "bssl-sys" +version = "0.1.0" +description = "Placeholder package for boringssl bindings" +readme = "README.md" +license = "MIT" +resolver = "2" diff --git a/Cargo.toml.orig b/Cargo.toml.orig new file mode 100644 index 0000000..efb520a --- /dev/null +++ b/Cargo.toml.orig @@ -0,0 +1,7 @@ +[package] +name = "bssl-sys" +version = "0.1.0" +edition = "2021" +license = "MIT" +description = "Placeholder package for boringssl bindings" +readme = "README.md" diff --git a/README.md b/README.md new file mode 100644 index 0000000..7a87d79 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +`bssl-sys` is generated by building `boringssl` with `-DRUST_BINDINGS=`. + +You are intended to inject the resulting package into your build, either by path +if you depend on it directly, or via `.cargo/config` if you depend indirectly +through `openssl` or a similar package. + +This placeholder package is here to prevent others from populating this crate on +crates.io and tricking users who have not configured their build properly into +downloading it. diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..da5a59d --- /dev/null +++ b/src/lib.rs @@ -0,0 +1 @@ +compile_error!("This is a placeholder package not intended for use - see README.md"); -- cgit v1.2.3