This commit is contained in:
Filipriec
2026-04-21 14:32:34 +02:00
parent ad8f32911c
commit b752af8c7b
7 changed files with 936 additions and 0 deletions

1
protos/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
target/

34
protos/Cargo.lock generated Normal file
View File

@@ -0,0 +1,34 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "autocfg"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
[[package]]
name = "micropb"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1bfc6ec8daaec9373b02386de3f58b46c578122c48324bbee23bef86afd5240"
dependencies = [
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
dependencies = [
"autocfg",
]
[[package]]
name = "protos"
version = "0.1.0"
dependencies = [
"micropb",
]

7
protos/Cargo.toml Normal file
View File

@@ -0,0 +1,7 @@
[package]
name = "protos"
version = "0.1.0"
edition = "2024"
[dependencies]
micropb = { version = "0.6.0", default-features = false}

1
protos/src/lib.rs Normal file
View File

@@ -0,0 +1 @@
#![no_std]

3
protos/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}