Compare commits

..

No commits in common. "02abfefee4e4eda28ce53c637b3c0d204ace8a6d" and "a373b82991947b694196ee630bd6a648d71e2b3f" have entirely different histories.

3 changed files with 4 additions and 4 deletions

View File

@ -12,7 +12,7 @@ pub fn build(b: *std.Build) !void {
const upstream = b.dependency("libressl", .{});
const libressl_common: LibreSslCommon = .{
.libcrypto = b.addStaticLibrary(.{
.name = "crypto",
.name = "cypto",
.target = target,
.optimize = optimize,
}),

View File

@ -1,6 +1,6 @@
.{
.name = "libressl",
.version = "3.9.2+1",
.version = "3.9.2",
.minimum_zig_version = "0.12.0",
.dependencies = .{
.libressl = .{

View File

@ -21,7 +21,7 @@ First, update your `build.zig.zon`:
```sh
# Initialize a `zig build` project if you haven't already
zig init
# replace <refname> with the version you want to use, e.g. 3.9.2+1
# replace <refname> with the version you want to use, e.g. 3.9.2
zig fetch --save git+https://github.com/allyourcodebase/libressl#<refname>
```
@ -40,4 +40,4 @@ your_exe.linkLibrary(libressl_dependency.artifact("tls")); // or "ssl", or "cryp
| Refname | LibreSSL Version | Zig `0.12.x` | Zig `0.13.x` | Zig `0.14.0-dev` |
|----------|------------------|--------------|--------------|------------------|
| `3.9.2+1`| `3.9.2+1` | ✅ | ✅ | ✅ |
| `3.9.2` | `3.9.2` | ✅ | ✅ | ✅ |