Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Eliot00 committed Jan 22, 2024
1 parent 1945554 commit c4ffda0
Show file tree
Hide file tree
Showing 4 changed files with 332 additions and 55 deletions.
159 changes: 157 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { workspace = true }

liushu-core = { path = "liushu-core" }
wayland-client = { version = "0.31.1" }
wayland-protocols = { version = "0.31.0", features = ["unstable", "client"] }
xkbcommon = { version = "0.7", features = ["wayland"] }

[dev-dependencies]
criterion = "0.3"
Expand Down
8 changes: 7 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,16 @@
{
devShells = {
default = mkShell {
buildInputs = [
nativeBuildInputs = [
(pkgs.rust-bin.stable."1.71.1".default.override {
extensions = [ "rust-src" ];
})

pkg-config
];

buildInputs = [
libxkbcommon
];
};
};
Expand Down
Loading

0 comments on commit c4ffda0

Please sign in to comment.