Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
153ddb8419 | |||
db144d3bd2 |
1
.gitignore
vendored
Normal file → Executable file
1
.gitignore
vendored
Normal file → Executable file
@ -1,3 +1,2 @@
|
|||||||
/target
|
/target
|
||||||
/.vscode
|
/.vscode
|
||||||
/Cargo.lock
|
|
2109
Cargo.lock
generated
Executable file
2109
Cargo.lock
generated
Executable file
File diff suppressed because it is too large
Load Diff
3
Cargo.toml
Normal file → Executable file
3
Cargo.toml
Normal file → Executable file
@ -7,9 +7,8 @@ edition = "2021"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
arboard = "3.3.2"
|
arboard = "3.3.2"
|
||||||
|
rdev = "0.5.3"
|
||||||
winit = "0.29.15"
|
winit = "0.29.15"
|
||||||
tiny-skia = "0.11.4"
|
tiny-skia = "0.11.4"
|
||||||
softbuffer = "0.4.2"
|
softbuffer = "0.4.2"
|
||||||
rdev = "0.5.3"
|
|
||||||
fontdue = "0.8.0"
|
fontdue = "0.8.0"
|
||||||
send_wrapper = { version = "0.6.0", features = ["futures"] }
|
|
4
build.sh
Executable file
4
build.sh
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
for i in i686-unknown-linux-gnu i686-pc-windows-gnu x86_64-pc-windows-gnu x86_64-unknown-linux-gnu
|
||||||
|
do
|
||||||
|
cargo build --release --target $i
|
||||||
|
done
|
23
shell.nix
Executable file
23
shell.nix
Executable file
@ -0,0 +1,23 @@
|
|||||||
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
|
pkgs.mkShell {
|
||||||
|
nativeBuildInputs = with pkgs; [
|
||||||
|
pkg-config
|
||||||
|
xorg.libX11.dev
|
||||||
|
xorg.libXft
|
||||||
|
xorg.libXinerama
|
||||||
|
xorg.libXi
|
||||||
|
xorg.libXtst
|
||||||
|
xorg.libX11
|
||||||
|
xorg.libXcursor
|
||||||
|
xorg.libXrandr
|
||||||
|
libxkbcommon
|
||||||
|
libxkbcommon.dev
|
||||||
|
xorg.libxcb
|
||||||
|
alsa-lib
|
||||||
|
libudev-zero
|
||||||
|
openssl
|
||||||
|
];
|
||||||
|
shellHook = ''
|
||||||
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${pkgs.libxkbcommon}/lib
|
||||||
|
'';
|
||||||
|
}
|
0
src/main.rs
Normal file → Executable file
0
src/main.rs
Normal file → Executable file
Loading…
Reference in New Issue
Block a user