├── .cargo └── vimspector-get-test-binary.sh ├── .drone.yml ├── .gitignore ├── .vimspector.json ├── Cargo.toml ├── LICENSE.BSD-2 ├── LICENSE.MIT ├── README.md └── src ├── hyper.rs ├── lib.rs └── vfs ├── file.rs ├── hyper.rs ├── mod.rs ├── system.rs └── test.rs /.cargo/vimspector-get-test-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalcine/sqlite-hypercore/HEAD/.cargo/vimspector-get-test-binary.sh -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalcine/sqlite-hypercore/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | /hypercore-data 4 | -------------------------------------------------------------------------------- /.vimspector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalcine/sqlite-hypercore/HEAD/.vimspector.json -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalcine/sqlite-hypercore/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.BSD-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalcine/sqlite-hypercore/HEAD/LICENSE.BSD-2 -------------------------------------------------------------------------------- /LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalcine/sqlite-hypercore/HEAD/LICENSE.MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalcine/sqlite-hypercore/HEAD/README.md -------------------------------------------------------------------------------- /src/hyper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalcine/sqlite-hypercore/HEAD/src/hyper.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- 1 | mod hyper; 2 | mod vfs; 3 | -------------------------------------------------------------------------------- /src/vfs/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalcine/sqlite-hypercore/HEAD/src/vfs/file.rs -------------------------------------------------------------------------------- /src/vfs/hyper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalcine/sqlite-hypercore/HEAD/src/vfs/hyper.rs -------------------------------------------------------------------------------- /src/vfs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalcine/sqlite-hypercore/HEAD/src/vfs/mod.rs -------------------------------------------------------------------------------- /src/vfs/system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalcine/sqlite-hypercore/HEAD/src/vfs/system.rs -------------------------------------------------------------------------------- /src/vfs/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalcine/sqlite-hypercore/HEAD/src/vfs/test.rs --------------------------------------------------------------------------------