diff options
| author | 2023-04-02 21:47:15 +0300 | |
|---|---|---|
| committer | 2023-04-02 21:50:01 +0300 | |
| commit | a6dbcffe2ce03f9571da693852181a785942ec4b (patch) | |
| tree | ab5eb4b7591c104fd04758c32039dda03b67f3ea /src/main.zig | |
| parent | Release 0.2.1 (diff) | |
| download | zup-a6dbcffe2ce03f9571da693852181a785942ec4b.tar.gz zup-a6dbcffe2ce03f9571da693852181a785942ec4b.tar.xz zup-a6dbcffe2ce03f9571da693852181a785942ec4b.zip | |
Actually use my zig-curl instead of zelda.
I'll wait until zelda & zig get more stable and get more contributors.
Also, zelda has been archived on April 1st, perhaps a joke, perhaps not.
This reverts commit 081e79c3fa385c662a5a6b7faf717ec370b398c8.
This reverts commit 33226c20c41e3fe2de3330b6692c90bc4818b119.
This reverts commit 3b3baf375be63acfd293b1b47a5f49aab4b06a70.
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main.zig b/src/main.zig index 11aae8f..197a224 100644 --- a/src/main.zig +++ b/src/main.zig | |||
| @@ -12,7 +12,6 @@ pub const update = SubCommand(@import("update.zig")); | |||
| 12 | pub const version = SubCommand(Version); | 12 | pub const version = SubCommand(Version); |
| 13 | 13 | ||
| 14 | const std = @import("std"); | 14 | const std = @import("std"); |
| 15 | const zelda = @import("zelda"); | ||
| 16 | const zup_config = @import("zup-config"); | 15 | const zup_config = @import("zup-config"); |
| 17 | 16 | ||
| 18 | const ArgIterator = std.process.ArgIterator; | 17 | const ArgIterator = std.process.ArgIterator; |
| @@ -25,9 +24,6 @@ pub fn main() !void { | |||
| 25 | const allocator = gpa.allocator(); | 24 | const allocator = gpa.allocator(); |
| 26 | defer _ = gpa.deinit(); | 25 | defer _ = gpa.deinit(); |
| 27 | 26 | ||
| 28 | // TODO: Make an issue in zelda mentioning this | ||
| 29 | defer zelda.client.global_connection_cache.deinit(); | ||
| 30 | |||
| 31 | var config = try Config.init(allocator); | 27 | var config = try Config.init(allocator); |
| 32 | defer config.deinit(); | 28 | defer config.deinit(); |
| 33 | 29 | ||