├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── Cargo.toml ├── LICENSE.txt ├── README.md ├── scripts ├── ci │ ├── check │ ├── format │ └── test └── release └── src └── lib.rs /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/preferences-rs/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/preferences-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/preferences-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/preferences-rs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/preferences-rs/HEAD/README.md -------------------------------------------------------------------------------- /scripts/ci/check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/preferences-rs/HEAD/scripts/ci/check -------------------------------------------------------------------------------- /scripts/ci/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/preferences-rs/HEAD/scripts/ci/format -------------------------------------------------------------------------------- /scripts/ci/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/preferences-rs/HEAD/scripts/ci/test -------------------------------------------------------------------------------- /scripts/release: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | cargo release "$@" 3 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/preferences-rs/HEAD/src/lib.rs --------------------------------------------------------------------------------