├── .gitignore ├── Cargo.toml ├── LICENSE.spdx ├── LICENSE_APACHE-2.0 ├── LICENSE_MIT ├── README.md ├── banner.png ├── dist-js ├── index.d.ts ├── index.min.js ├── index.min.js.map ├── index.mjs └── index.mjs.map ├── guest-js └── index.ts ├── package.json ├── rollup.config.mjs ├── src └── lib.rs └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.spdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/LICENSE.spdx -------------------------------------------------------------------------------- /LICENSE_APACHE-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/LICENSE_APACHE-2.0 -------------------------------------------------------------------------------- /LICENSE_MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/LICENSE_MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/banner.png -------------------------------------------------------------------------------- /dist-js/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/dist-js/index.d.ts -------------------------------------------------------------------------------- /dist-js/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/dist-js/index.min.js -------------------------------------------------------------------------------- /dist-js/index.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/dist-js/index.min.js.map -------------------------------------------------------------------------------- /dist-js/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/dist-js/index.mjs -------------------------------------------------------------------------------- /dist-js/index.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/dist-js/index.mjs.map -------------------------------------------------------------------------------- /guest-js/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/guest-js/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tauri-apps/tauri-plugin-log/HEAD/tsconfig.json --------------------------------------------------------------------------------