Add Rust crate "winproto"

This commit is contained in:
Alex Kotov 2022-09-09 17:17:33 +04:00
parent 8367f549a3
commit 37ca42e798
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
4 changed files with 17 additions and 2 deletions

9
.gitignore vendored
View File

@ -1,8 +1,13 @@
/Cargo.lock
/config/1-generated.mk
/config/2-conditionals.mk
/polytreewm
# C
/src/*.o
/target/
/tests/*.o
/tests/*.test
# Rust
/Cargo.lock
/rust-winproto/Cargo.lock
/target/

View File

@ -1,4 +1,5 @@
[workspace]
members = [
"rust-polytreewm",
"rust-winproto",
]

8
rust-winproto/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "winproto"
version = "0.0.0"
publish = false
[lib]
name = "winproto"
crate-type = ["staticlib"]

1
rust-winproto/src/lib.rs Normal file
View File

@ -0,0 +1 @@
pub fn foo() {}