librius 0.5.1

A personal library manager CLI written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub const EDITABLE_FIELDS: &[(&str, &str, char)] = &[
    ("title", "help.edit.book.title", 't'),
    ("author", "help.edit.book.author", 'a'),
    ("editor", "help.edit.book.editor", 'e'),
    ("year", "help.edit.book.year", 'y'),
    ("language_book", "help.edit.book.lang_book", 'b'),
    ("pages", "help.edit.book.pages", 'p'),
    ("genre", "help.edit.book.genre", 'g'),
    ("summary", "help.edit.book.summary", 's'),
    ("room", "help.edit.book.room", 'r'),
    ("shelf", "help.edit.book.shelf", 'f'),
    ("row", "help.edit.book.row", 'w'),
    ("position", "help.edit.book.position", 'o'),
];