summaryrefslogtreecommitdiff
path: root/crates/fs-mistrust/src/user
Commit message (Collapse)AuthorAgeFilesLines
* Use serde attrs instead of manual implsNick Mathewson2022-05-241-28/+4
|
* Write custom serde impls for Trusted{User,Group}Nick Mathewson2022-05-241-0/+298
We support all of the following (in TOML notation): ``` user = "rose" # by name user = 413 # by ID user = false # no user user = ":current" # A 'special' user. user = { name: "rose" } user = { id: 413 } user = { special: ":none" } user = { special: ":current" } ```