mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-07-03 06:09:07 +02:00
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:
parent
0542f2ea11
commit
0842cb4ec2
10 changed files with 36 additions and 28 deletions
|
@ -11,15 +11,17 @@ use lru::LruCache;
|
|||
use rayon::prelude::*;
|
||||
use tokio::sync::OnceCell;
|
||||
|
||||
use minedmap::{
|
||||
io::{fs, storage},
|
||||
resource::{block_color, needs_biome},
|
||||
types::*,
|
||||
util::coord_offset,
|
||||
use super::{
|
||||
common::*,
|
||||
core::{
|
||||
io::{fs, storage},
|
||||
resource::{block_color, needs_biome},
|
||||
types::*,
|
||||
util::coord_offset,
|
||||
},
|
||||
region_group::RegionGroup,
|
||||
};
|
||||
|
||||
use super::{common::*, region_group::RegionGroup};
|
||||
|
||||
type RegionRef = Arc<ProcessedRegion>;
|
||||
|
||||
fn biome_at(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue