├── .editorconfig ├── .github └── workflows │ ├── code-quality.yml │ └── publish.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md └── src ├── buku ├── database.rs ├── mod.rs ├── types.rs └── utils.rs ├── cli.rs ├── config.rs ├── main.rs ├── manifest ├── installer.rs ├── mod.rs ├── paths.rs └── targets │ ├── chrome.rs │ ├── firefox.rs │ └── mod.rs ├── native_messaging.rs └── server.rs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/code-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/.github/workflows/code-quality.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .build/ 3 | release/ 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/README.md -------------------------------------------------------------------------------- /src/buku/database.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/src/buku/database.rs -------------------------------------------------------------------------------- /src/buku/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/src/buku/mod.rs -------------------------------------------------------------------------------- /src/buku/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/src/buku/types.rs -------------------------------------------------------------------------------- /src/buku/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/src/buku/utils.rs -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/src/cli.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/manifest/installer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/src/manifest/installer.rs -------------------------------------------------------------------------------- /src/manifest/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/src/manifest/mod.rs -------------------------------------------------------------------------------- /src/manifest/paths.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/src/manifest/paths.rs -------------------------------------------------------------------------------- /src/manifest/targets/chrome.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/src/manifest/targets/chrome.rs -------------------------------------------------------------------------------- /src/manifest/targets/firefox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/src/manifest/targets/firefox.rs -------------------------------------------------------------------------------- /src/manifest/targets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/src/manifest/targets/mod.rs -------------------------------------------------------------------------------- /src/native_messaging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/src/native_messaging.rs -------------------------------------------------------------------------------- /src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhh/bukubrow-host/HEAD/src/server.rs --------------------------------------------------------------------------------