├── .gitignore ├── .valgrind.supp ├── BUILD.gn ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── cbindgen.toml ├── examples ├── .gitignore └── cpp │ └── main.cc └── src ├── lib.h ├── lib.rs ├── wrapper.cc └── wrapper.h /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /target/ 3 | **/*.rs.bk 4 | .gdb_history 5 | -------------------------------------------------------------------------------- /.valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brave/adblock-rust-ffi/HEAD/.valgrind.supp -------------------------------------------------------------------------------- /BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brave/adblock-rust-ffi/HEAD/BUILD.gn -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brave/adblock-rust-ffi/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brave/adblock-rust-ffi/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brave/adblock-rust-ffi/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brave/adblock-rust-ffi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brave/adblock-rust-ffi/HEAD/README.md -------------------------------------------------------------------------------- /cbindgen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brave/adblock-rust-ffi/HEAD/cbindgen.toml -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brave/adblock-rust-ffi/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/cpp/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brave/adblock-rust-ffi/HEAD/examples/cpp/main.cc -------------------------------------------------------------------------------- /src/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brave/adblock-rust-ffi/HEAD/src/lib.h -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brave/adblock-rust-ffi/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brave/adblock-rust-ffi/HEAD/src/wrapper.cc -------------------------------------------------------------------------------- /src/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brave/adblock-rust-ffi/HEAD/src/wrapper.h --------------------------------------------------------------------------------