├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── Cargo.toml ├── README.md ├── keytar-sys ├── Cargo.toml ├── LICENSE ├── README.md ├── build.rs └── src │ ├── lib.cc │ ├── lib.h │ └── lib.rs ├── src └── lib.rs └── tests └── test.rs /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoically/keytar-rs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /node_modules 3 | /Cargo.lock -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoically/keytar-rs/HEAD/.gitmodules -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoically/keytar-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoically/keytar-rs/HEAD/README.md -------------------------------------------------------------------------------- /keytar-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoically/keytar-rs/HEAD/keytar-sys/Cargo.toml -------------------------------------------------------------------------------- /keytar-sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoically/keytar-rs/HEAD/keytar-sys/LICENSE -------------------------------------------------------------------------------- /keytar-sys/README.md: -------------------------------------------------------------------------------- 1 | node-keytar bindings 2 | -------------------------------------------------------------------------------- /keytar-sys/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoically/keytar-rs/HEAD/keytar-sys/build.rs -------------------------------------------------------------------------------- /keytar-sys/src/lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoically/keytar-rs/HEAD/keytar-sys/src/lib.cc -------------------------------------------------------------------------------- /keytar-sys/src/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoically/keytar-rs/HEAD/keytar-sys/src/lib.h -------------------------------------------------------------------------------- /keytar-sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoically/keytar-rs/HEAD/keytar-sys/src/lib.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoically/keytar-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoically/keytar-rs/HEAD/tests/test.rs --------------------------------------------------------------------------------