This project exists so one can compile rust-wlc without needing C library references.
It is used in way-cooler's Travis build script.
Methods with no return type are no-ops. Methods on WlcView
and WlcOutput
that would usually run with dummy handles will run, unsafe methods will panic.
Other methods with return types have been replaced with unimplemented!()
.
The methods in callbacks
will run without side effects and rustwlc::init
returns a function that simply prints a message to the console.
Effectively, dropping in dummy-rustwlc
and running your program should cause your program to start, print the message, and exit successfully.
To replace a project's rustwlc
depenency, one can run this script from the project root to swap dependencies in Cargo.toml
.
bash
sed 's/rustwlc = .*/rustwlc = { git = "https:\/\/github.com\/SnirkImmington\/dummy-rustwlc.git" }/g' Cargo.toml -i