diff options
| author | Clawd <ai@clawd.bot> | 2026-03-05 07:29:00 -0800 |
|---|---|---|
| committer | Clawd <ai@clawd.bot> | 2026-03-05 07:29:00 -0800 |
| commit | f1ff85c7acad6b2ae7ec10720619ef2023cb7dc9 (patch) | |
| tree | 5e694f4a2e864c9fcdfcbb1ab869c3bae05b50e3 /go.mod | |
| parent | 03d8f49479b3446cf7f8ab9b6fdb2401584e3f12 (diff) | |
Implement core: walker, chunker, embedder, index, CLI
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 26 |
1 files changed, 26 insertions, 0 deletions
| @@ -0,0 +1,26 @@ | |||
| 1 | module code.northwest.io/codevec | ||
| 2 | |||
| 3 | go 1.24.0 | ||
| 4 | |||
| 5 | require ( | ||
| 6 | github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 | ||
| 7 | github.com/smacker/go-tree-sitter v0.0.0-20240827094217-dd81d9e9be82 | ||
| 8 | github.com/spf13/cobra v1.10.2 | ||
| 9 | modernc.org/sqlite v1.46.1 | ||
| 10 | ) | ||
| 11 | |||
| 12 | require ( | ||
| 13 | github.com/dustin/go-humanize v1.0.1 // indirect | ||
| 14 | github.com/google/uuid v1.6.0 // indirect | ||
| 15 | github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
| 16 | github.com/mattn/go-isatty v0.0.20 // indirect | ||
| 17 | github.com/ncruces/go-strftime v1.0.0 // indirect | ||
| 18 | github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect | ||
| 19 | github.com/spf13/pflag v1.0.9 // indirect | ||
| 20 | golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546 // indirect | ||
| 21 | golang.org/x/sync v0.19.0 // indirect | ||
| 22 | golang.org/x/sys v0.40.0 // indirect | ||
| 23 | modernc.org/libc v1.67.6 // indirect | ||
| 24 | modernc.org/mathutil v1.7.1 // indirect | ||
| 25 | modernc.org/memory v1.11.0 // indirect | ||
| 26 | ) | ||
