feat: port to_upper and to_lower to uucode

This commit is contained in:
CJ van den Berg 2025-11-25 21:14:59 +01:00
parent 2ff0521040
commit e35a0555f1
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 90 additions and 64 deletions

View file

@ -324,11 +324,6 @@ pub fn build_exe(
.root_source_file = b.path("src/tracy_noop.zig"),
});
const zg_dep = b.dependency("zg", .{
.target = target,
.optimize = optimize,
});
const zeit_dep = b.dependency("zeit", .{
.target = target,
.optimize = optimize,
@ -424,7 +419,7 @@ pub fn build_exe(
.imports = &.{
.{ .name = "cbor", .module = cbor_mod },
.{ .name = "thespian", .module = thespian_mod },
.{ .name = "LetterCasing", .module = zg_dep.module("LetterCasing") },
.{ .name = "vaxis", .module = vaxis_mod },
.{ .name = "file_type_config", .module = file_type_config_mod },
},
});