-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (45 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
57 lines (45 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "jacin"
version = "0.1.0"
edition = "2024"
description = "A custom Input Method Editor for Linux Wayland with Neovim backend"
license = "MIT"
readme = "README.md"
keywords = ["wayland", "ime", "input-method", "neovim", "japanese"]
categories = ["text-editors"]
[dependencies]
# Wayland core
wayland-client = "0.31"
wayland-protocols = { version = "0.32", features = ["client"] }
wayland-protocols-misc = { version = "0.3", features = ["client"] }
# Event loop
calloop = { version = "0.14", features = ["signals"] }
calloop-wayland-source = "0.4"
# Error handling
anyhow = "1"
# Channels with timeout
crossbeam-channel = "0.5"
# JSON serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Config file
toml = "0.8"
# Keyboard handling
xkbcommon = "0.8"
libc = "0.2"
# Neovim backend
nvim-rs = { version = "0.9", features = ["use_tokio"] }
async-trait = "0.1"
tokio = { version = "1", features = ["rt", "process", "io-util", "sync", "time"] }
# Rendering
tiny-skia = "0.11"
fontdue = "0.9"
fontconfig = "0.7"
yeslogic-fontconfig-sys = "5"
# Buffer management
memmap2 = "0.9"
# Signal handling
signal-hook = "0.3"
# Logging
log = "0.4"
env_logger = "0.11"