This commit is contained in:
Nikita Podvirnyi 2024-08-02 10:41:49 +02:00
parent fde7b26347
commit a17a082434
No known key found for this signature in database
GPG key ID: 859D416E5142AFF3
2 changed files with 5 additions and 3 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "anime-launcher-sdk" name = "anime-launcher-sdk"
version = "1.16.10" version = "1.17.0"
authors = ["Nikita Podvirnyi <krypt0nn@vk.com>"] authors = ["Nikita Podvirnyi <krypt0nn@vk.com>"]
license = "GPL-3.0" license = "GPL-3.0"
readme = "README.md" readme = "README.md"
@ -9,7 +9,7 @@ edition = "2021"
[dependencies.anime-game-core] [dependencies.anime-game-core]
git = "https://github.com/an-anime-team/anime-game-core" git = "https://github.com/an-anime-team/anime-game-core"
tag = "1.21.3" tag = "1.22.0"
features = ["all"] features = ["all"]
# path = "../anime-game-core" # ! for dev purposes only # path = "../anime-game-core" # ! for dev purposes only
@ -21,7 +21,7 @@ tracing = "0.1"
serde = { version = "1.0", features = ["derive"], optional = true } serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true } serde_json = { version = "1.0", optional = true }
cached = { version = "0.52", features = ["proc_macro"] } cached = { version = "0.53", features = ["proc_macro"] }
enum-ordinalize = { version = "4.3", optional = true } enum-ordinalize = { version = "4.3", optional = true }
wincompatlib = { version = "0.7.4", features = ["all"], optional = true } wincompatlib = { version = "0.7.4", features = ["all"], optional = true }

View file

@ -27,7 +27,9 @@ pub mod prelude {
pub use super::launcher::prelude::*; pub use super::launcher::prelude::*;
pub use super::game::prelude::*; pub use super::game::prelude::*;
#[allow(unused_imports)]
pub use super::launcher::prelude::*; pub use super::launcher::prelude::*;
pub use super::game::*; pub use super::game::*;
#[cfg(feature = "components")] #[cfg(feature = "components")]