gregtbrown

Results 2 issues of gregtbrown

In comparing `libsql` to `better-sqlite3` I wrote the following simple test code: ``` import DB from "libsql"; import DB2 from 'better-sqlite3'; async function run(testName, db, numRecs) { console.log('Running', testName) await...

the code at: https://github.com/tursodatabase/libsql/blob/main/libsql-ffi/build.rs#L42 should be (based on the build platform) something like: ``` Command::new("xcopy") .arg("/S") .arg(format!("{dir}\\{bindgen_rs_path}")) .arg(&out_path) .output() .unwrap(); ``` I hacked this into the files installed by `cargo...