mirror of
https://github.com/deepseek-ai/DeepSeek-V3.git
synced 2025-06-19 16:13:48 -04:00
- Port HTTP server, and appropriate points across core etc from old API to Zig `0.15.0-dev` patterns - Fix mutability, unused variables, and API compatibility issues - Validate SIMD tensor operations and backend architecture - Foundation now compiles cleanly and produces working binary
32 lines
857 B
Plaintext
32 lines
857 B
Plaintext
.{
|
|
.name = .deepzig_v3,
|
|
.version = "0.1.0",
|
|
.fingerprint = 0x602e54a97e1751eb,
|
|
.minimum_zig_version = "0.15.0-dev.703",
|
|
|
|
.dependencies = .{
|
|
// HTTP/Web dependencies
|
|
// TODO: Add when available for 0.15.0-dev
|
|
// .httpz = .{
|
|
// .url = "https://github.com/karlseguin/http.zig/archive/refs/heads/master.tar.gz",
|
|
// .hash = "1220...",
|
|
// },
|
|
|
|
// JSON parsing
|
|
// TODO: Add structured JSON library if needed beyond std.json
|
|
|
|
// SIMD/Math libraries
|
|
// TODO: Add optimized math libraries if available
|
|
|
|
// Tokenizer dependencies
|
|
// TODO: Add tokenizer libraries or implement from scratch
|
|
},
|
|
|
|
.paths = .{
|
|
"build.zig",
|
|
"build.zig.zon",
|
|
"src",
|
|
"bench",
|
|
"README.md",
|
|
},
|
|
} |