diff --git a/Cargo.lock b/Cargo.lock index 3ff1aea..b14bb70 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -25,7 +25,7 @@ checksum = "f02882884d3e1bc524fb12c79f107f6ad0e1cfd498c536ffb494301740995dfe" [[package]] name = "beer" -version = "0.0.0" +version = "0.0.1" dependencies = [ "anyhow", "calloop", diff --git a/Cargo.toml b/Cargo.toml index 122641a..e1e4768 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "beer" -version = "0.0.0" +version = "0.0.1" edition = "2024" rust-version = "1.95.0" description = "A fast, software-rendered, Wayland-native terminal emulator" @@ -12,7 +12,13 @@ anyhow = "1.0.102" calloop = "0.14.4" calloop-wayland-source = "0.4.1" pound = "0.1.6" -rustix = { version = "1.1.4", features = ["pty", "process", "termios", "stdio", "fs"] } +rustix = { version = "1.1.4", features = [ + "pty", + "process", + "termios", + "stdio", + "fs", +] } smithay-client-toolkit = "0.20.0" tracing = "0.1.44" tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }