How to build advanced applications with the Keyring ecosystem
mainIf you are building an application that requires full control over specific credential stores, do not link directly against the keyring crate using the cli feature, as this will include unnecessary dependencies.
Instead, follow this pattern:
- Take a dependency on the
keyring-corecrate. - Add the specific credential store crates you want to use as dependencies.
- Use the sample code found in the
climodule of thekeyringcrate as a reference for instantiating and accessing your desired stores.