sqlite-vec 0.0.1-alpha.11

FFI bindings to the sqlite-vec SQLite extension
1
2
3
4
5
6
7
8
9
10
11
12
13
14
VERSION=$(shell cat ../../VERSION)

deps: Cargo.toml sqlite-vec.c sqlite-vec.h

Cargo.toml: ../../VERSION Cargo.toml.tmpl
		VERSION=$(VERSION) envsubst < Cargo.toml.tmpl > $@

sqlite-vec.c: ../../sqlite-vec.c
		cp $< $@

sqlite-vec.h: ../../sqlite-vec.h
		cp $< $@

.PHONY: deps