Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.name = .tls,
.version = "0.1.0",
.dependencies = .{},
.minimum_zig_version = "0.15.1",
.fingerprint = 0xacfd1db3d29e1d11,
.paths = .{
"readme.md",
Expand Down
6 changes: 6 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ https://github.com/ziglang/zig/issues/15226#issuecomment-2218809140
https://github.com/ziglang/zig/issues/14172#issuecomment-2181202318
-->

## Toolchain version

In order to build `tls.zig`, you need **Zig 15 or newer**. The code uses the new
[`std.Io`](https://ziglang.org/documentation/0.15.1/std/#std.Io) interface, which isn't
available in Zig 14 or older.

# Client

[Here](https://github.com/ianic/tls.zig/blob/main/demo/src/main.zig) is simple example of how to use library.
Expand Down
Loading