progress
Some checks failed
Build and Test / puyopuyo (push) Failing after 26s
Build and Test / splatoon-testfire (push) Failing after 27s
Build and Test / minecraft-wiiu (push) Failing after 2m34s
Build and Test / fast-racing-neo (push) Failing after 2m36s
Build and Test / mario-tennis (push) Failing after 2m38s
Build and Test / splatoon (push) Failing after 2m38s
Build and Test / wii-u-chat (push) Failing after 5m25s
Build and Test / friends (push) Successful in 6m34s
Build and Test / super-mario-maker (push) Failing after 6m43s
Build and Test / sonic-transformed (push) Failing after 6m58s
Build and Test / wii-sports-club (push) Failing after 7m9s

This commit is contained in:
Maple Nebel 2026-07-13 23:47:15 +02:00
commit f1d16e40a1
36 changed files with 730 additions and 1392 deletions

View file

@ -8,5 +8,8 @@ ctor = "1.0.8"
rnex-rmc = { path = "../../rnex-rmc" }
rnex-base-protos = { path = "../base-protos" }
[feature]
datastore = []
[lints]
workspace = true

View file

@ -22,14 +22,14 @@ pub struct Permission {
pub recipient_ids: Vec<PID>,
}
#[derive(RmcSerialize, Clone, Default)]
#[derive(RmcSerialize, Clone, Default, Debug)]
#[rmc_struct(0)]
pub struct RatingInfoWithSlot {
pub slot: i8,
pub rating: RatingInfo,
}
#[derive(RmcSerialize, Clone, Default)]
#[derive(RmcSerialize, Clone, Default, Debug)]
#[rmc_struct(0)]
pub struct RatingInfo {
pub total_value: i64,
@ -46,7 +46,7 @@ pub struct GetMetaParam {
pub access_password: i64,
}
#[derive(RmcSerialize, Clone, Default)]
#[derive(RmcSerialize, Clone, Default, Debug)]
#[rmc_struct(0)]
pub struct GetMetaInfo {
pub dataid: i64,

View file

@ -1,4 +1,5 @@
#![allow(async_fn_in_trait)]
#![cfg(feature = "datastore")]
pub mod datastore;
use datastore::{DataStore, RawDataStore, RawDataStoreInfo, RemoteDataStore};