This repository was archived by the owner on Dec 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +4
-6
lines changed
Expand file tree Collapse file tree 5 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ pub fn build(b: *std.Build) !void {
5757 .root_source_file = b .path ("lib/client.zig" ),
5858 .imports = &.{
5959 .{ .name = "zbor" , .module = zbor_module },
60+ .{ .name = "keylib" , .module = keylib_module },
6061 },
6162 });
6263 try b .modules .put (b .dupe ("clientlib" ), client_module );
Original file line number Diff line number Diff line change 11.{
22 .name = "keylib" ,
3- .version = "0.4.0 " ,
3+ .version = "0.5.1 " ,
44 .dependencies = .{
55 .zbor = .{
66 .url = "https://github.com/r4gus/zbor/archive/refs/tags/0.15.0.tar.gz" ,
Original file line number Diff line number Diff line change 11const std = @import ("std" );
2- const keylib = @import ("../main.zig " );
2+ const keylib = @import ("keylib " );
33const cbor = @import ("zbor" );
44const Transport = @import ("Transport.zig" );
55const err = @import ("error.zig" );
Original file line number Diff line number Diff line change 22
33const std = @import ("std" );
44
5- const keylib = @import ("../../../main.zig " );
5+ const keylib = @import ("keylib " );
66const ctaphid = keylib .ctap .transports .ctaphid ;
77const Cmd = ctaphid .Cmd ;
88const ErrorCodes = ctaphid .authenticator .ErrorCodes ;
Original file line number Diff line number Diff line change @@ -247,10 +247,7 @@ pub const ctap = struct {
247247 }
248248};
249249
250- pub const client = @import ("client.zig" );
251-
252250test "library tests" {
253251 _ = common ;
254252 _ = ctap ;
255- _ = client ;
256253}
You can’t perform that action at this time.
0 commit comments