mirror of
https://github.com/redstrate/Kawari.git
synced 2025-05-13 07:07:45 +00:00
Switch to new physis sheets name
Nothing changed API-wise apart from that. We also have the ability to now pin on a game version, which is super helpful.
This commit is contained in:
parent
477380c8b9
commit
90a4f4ea0c
5 changed files with 15 additions and 15 deletions
18
Cargo.lock
generated
18
Cargo.lock
generated
|
@ -572,6 +572,14 @@ dependencies = [
|
||||||
"tracing",
|
"tracing",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "icarus"
|
||||||
|
version = "0.0.0"
|
||||||
|
source = "git+https://github.com/redstrate/Icarus?branch=ver%2F2025.04.16.0000.0000#5d5f1dded6949b790307546c9ddc0604af636451"
|
||||||
|
dependencies = [
|
||||||
|
"physis",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "icu_collections"
|
name = "icu_collections"
|
||||||
version = "2.0.0"
|
version = "2.0.0"
|
||||||
|
@ -720,11 +728,11 @@ dependencies = [
|
||||||
"binrw",
|
"binrw",
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"fastrand",
|
"fastrand",
|
||||||
|
"icarus",
|
||||||
"md5",
|
"md5",
|
||||||
"minijinja",
|
"minijinja",
|
||||||
"mlua",
|
"mlua",
|
||||||
"physis",
|
"physis",
|
||||||
"physis-sheets",
|
|
||||||
"reqwest",
|
"reqwest",
|
||||||
"rkon",
|
"rkon",
|
||||||
"rusqlite",
|
"rusqlite",
|
||||||
|
@ -1025,14 +1033,6 @@ dependencies = [
|
||||||
"libz-rs-sys",
|
"libz-rs-sys",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "physis-sheets"
|
|
||||||
version = "0.0.0"
|
|
||||||
source = "git+https://github.com/redstrate/PhysisSheets#4d11e27a1e31bb482184626d1e7a51fc5e673674"
|
|
||||||
dependencies = [
|
|
||||||
"physis",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pin-project-lite"
|
name = "pin-project-lite"
|
||||||
version = "0.2.16"
|
version = "0.2.16"
|
||||||
|
|
|
@ -104,4 +104,4 @@ rkon = { version = "0.1" }
|
||||||
tower-http = { version = "0.6", features = ["fs"] }
|
tower-http = { version = "0.6", features = ["fs"] }
|
||||||
|
|
||||||
# excel sheet data
|
# excel sheet data
|
||||||
physis-sheets = { git = "https://github.com/redstrate/PhysisSheets", features = ["Warp", "Tribe", "ClassJob", "World", "TerritoryType", "Race"], default-features = false }
|
icarus = { git = "https://github.com/redstrate/Icarus", branch = "ver/2025.04.16.0000.0000", features = ["Warp", "Tribe", "ClassJob", "World", "TerritoryType", "Race"], default-features = false }
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
|
use icarus::ClassJob::ClassJobSheet;
|
||||||
|
use icarus::World::WorldSheet;
|
||||||
|
use icarus::{Tribe::TribeSheet, Warp::WarpSheet};
|
||||||
use physis::common::{Language, Platform};
|
use physis::common::{Language, Platform};
|
||||||
use physis::exd::{EXD, ExcelRowKind};
|
use physis::exd::{EXD, ExcelRowKind};
|
||||||
use physis::exh::EXH;
|
use physis::exh::EXH;
|
||||||
use physis_sheets::ClassJob::ClassJobSheet;
|
|
||||||
use physis_sheets::World::WorldSheet;
|
|
||||||
use physis_sheets::{Tribe::TribeSheet, Warp::WarpSheet};
|
|
||||||
|
|
||||||
use crate::{common::Attributes, config::get_config};
|
use crate::{common::Attributes, config::get_config};
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
use icarus::Race::RaceSheet;
|
||||||
use physis::common::Language;
|
use physis::common::Language;
|
||||||
use physis_sheets::Race::RaceSheet;
|
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use crate::common::GameData;
|
use crate::common::GameData;
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
use icarus::TerritoryType::TerritoryTypeSheet;
|
||||||
use physis::{
|
use physis::{
|
||||||
common::Language,
|
common::Language,
|
||||||
gamedata::GameData,
|
gamedata::GameData,
|
||||||
|
@ -5,7 +6,6 @@ use physis::{
|
||||||
ExitRangeInstanceObject, InstanceObject, LayerEntryData, LayerGroup, PopRangeInstanceObject,
|
ExitRangeInstanceObject, InstanceObject, LayerEntryData, LayerGroup, PopRangeInstanceObject,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
use physis_sheets::TerritoryType::TerritoryTypeSheet;
|
|
||||||
|
|
||||||
/// Represents a loaded zone
|
/// Represents a loaded zone
|
||||||
#[derive(Default)]
|
#[derive(Default)]
|
||||||
|
|
Loading…
Add table
Reference in a new issue