mirror of
https://github.com/mikkelam/fast-cli.git
synced 2025-12-18 12:54:05 +00:00
* Refactor: Update build process and improve memory management - Commented out library tests in build.zig for clarity. - Changed minimum Zig version to 0.15.1 in build.zig.zon. - Modified root.zig to accept a Writer for output instead of using log. - Updated bandwidth.zig tests to use std.Thread.sleep for consistency. - Adjusted fast.zig to improve memory allocation handling. - Enhanced http_latency_tester.zig to manage latencies with allocator. - Refined speed_worker.zig to utilize std.Thread.sleep for delays. - Improved measurement_strategy.zig to handle speed measurements with allocator. - Updated main.zig to flush writer after command execution. * Fix: Update zli dependency to use URL and hash instead of path * Fix: Add newline to spinner output for better readability * switch worksflows to using zig 0.15.1 --------- Co-authored-by: mikkelam <mikkelarm@gmail.com>
25 lines
678 B
Zig
25 lines
678 B
Zig
.{
|
|
.name = .fast_cli,
|
|
|
|
.version = "0.2.4",
|
|
|
|
.fingerprint = 0xfb5a9fbee5075971, // Changing this has security and trust implications.
|
|
|
|
.minimum_zig_version = "0.15.1",
|
|
|
|
.dependencies = .{
|
|
.mvzr = .{
|
|
.url = "https://github.com/mnemnion/mvzr/archive/refs/tags/v0.3.3.tar.gz",
|
|
.hash = "mvzr-0.3.2-ZSOky95lAQA00lXTN_g8JWoBuh8pw-jyzmCWAqlu1h8L",
|
|
},
|
|
.zli = .{
|
|
.url = "https://github.com/xcaeser/zli/archive/v4.1.0.tar.gz",
|
|
.hash = "zli-4.1.0-LeUjplXaAAB2lg0IQPEC9VrTlWThzPfrxXvoJNhGMJl9",
|
|
},
|
|
},
|
|
.paths = .{
|
|
"build.zig",
|
|
"build.zig.zon",
|
|
"src",
|
|
},
|
|
}
|