Rename library crate to minedmap-core

Rustdoc can't deal with a bin and lib crate with the same name.
This commit is contained in:
Matthias Schiffer 2023-08-18 19:20:21 +02:00
parent 0542f2ea11
commit 0842cb4ec2
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C
10 changed files with 36 additions and 28 deletions

View file

@ -1,9 +1,10 @@
use anyhow::{Context, Result};
use rayon::prelude::*;
use minedmap::{io::fs, types::*};
use super::common::*;
use super::{
common::*,
core::{io::fs, types::*},
};
pub struct TileMipmapper<'a> {
config: &'a Config,