Add Rust crate "winproto"
This commit is contained in:
parent
8367f549a3
commit
37ca42e798
4 changed files with 17 additions and 2 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
@ -1,8 +1,13 @@
|
||||||
/Cargo.lock
|
|
||||||
/config/1-generated.mk
|
/config/1-generated.mk
|
||||||
/config/2-conditionals.mk
|
/config/2-conditionals.mk
|
||||||
/polytreewm
|
/polytreewm
|
||||||
|
|
||||||
|
# C
|
||||||
/src/*.o
|
/src/*.o
|
||||||
/target/
|
|
||||||
/tests/*.o
|
/tests/*.o
|
||||||
/tests/*.test
|
/tests/*.test
|
||||||
|
|
||||||
|
# Rust
|
||||||
|
/Cargo.lock
|
||||||
|
/rust-winproto/Cargo.lock
|
||||||
|
/target/
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
"rust-polytreewm",
|
"rust-polytreewm",
|
||||||
|
"rust-winproto",
|
||||||
]
|
]
|
||||||
|
|
8
rust-winproto/Cargo.toml
Normal file
8
rust-winproto/Cargo.toml
Normal 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
1
rust-winproto/src/lib.rs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
pub fn foo() {}
|
Loading…
Add table
Reference in a new issue