mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-14 09:40:10 +00:00
feat(api): update rust deps, move /private/meta endpoint to rust-api
This commit is contained in:
parent
f14c421e23
commit
e415c6704f
20 changed files with 1835 additions and 244 deletions
8
lib/libpk/build.rs
Normal file
8
lib/libpk/build.rs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
use std::io::Result;
|
||||
|
||||
fn main() -> Result<()> {
|
||||
prost_build::Config::new()
|
||||
.type_attribute(".ShardState", "#[derive(serde::Serialize)]")
|
||||
.compile_protos(&["../../proto/state.proto"], &["../../proto/"])?;
|
||||
Ok(())
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue