A simple CPU rendered GUI IDE experience.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -9,9 +9,9 @@ fimg = { git = "https://git.bendn.org/fimg" } pattypan = { git = "https://git.bendn.org/pattypan" } implicit-fn = "0.1.0" ropey = "1.6.1" -softbuffer = "0.4.8" +softbuffer = { version = "0.4.8", default-features = false, features = ["wayland", "x11"] } swash = "0.2.9" -winit = "0.31.0-beta.2" +winit = { version = "0.31.0-beta.2", default-features = false, features = ["wayland", "x11"] } tree-sitter = "0.25.10" memchr = "2.8.2" @@ -58,7 +58,6 @@ arc-swap = "1.9.1" atools = "0.1.12" swizzle = "0.1.0" walkdir = "2.5.0" -niri = { package = "niri-ipc", version = "25.11.0" } libc = "0.2.186" rustc-hash = "=2.1.1" git2 = "0.20.4" @@ -66,7 +65,7 @@ imara-diff = "0.2.0" vecto = "0.1.1" rangemap = { version = "1.7.1", features = ["const_fn", "nightly", "serde1"] } itern = "0.1.1" -kitty-rc = { version = "0.4.2", git = "https://github.com/bend-n/kitty-rc-rs" } + smol_str = "0.3.6" futures = "0.3.32" rootcause = { version = "0.12.1", features = ["compat-anyhow1"] } @@ -78,12 +77,19 @@ annotate-snippets = "0.12.16" toml = "1.1.2" bendncode = { git = "https://git.bendn.org/bendncode" } rfd = "0.17.2" + +[target.'cfg(unix)'.dependencies] +kitty-rc = { version = "0.4.2", git = "https://github.com/bend-n/kitty-rc-rs" } +niri = { package = "niri-ipc", version = "25.11.0" } + [profile.dev.package] rust-analyzer.opt-level = 3 fimg.opt-level = 3 nucleo.opt-level = 3 tree-house.debug-assertions = false + + [profile.release.package.tree-house] debug-assertions = false |