modrinth 0.2.0

Rust wraper for the Modrinth REST API. Public API subject to change before 1.0.0.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Requires nightly build of rustfmt
unstable_features = true

# Keep string literals under the `max_width` with a backslash
format_strings = true
# Wrap comments to `comment_width`
wrap_comments = true
# Format code in documentation
format_code_in_doc_comments = true
# Force a consistent style with macro patterns
format_macro_matchers = true
# Force imports to be grouped by deepest module per crate
imports_granularity = "Module"
# Enforce line endings, though this should be handled by Git
newline_style = "Unix"
# Group stock, external, and current crate imports together with newline
group_imports = "StdExternalCrate"