-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
33 lines (27 loc) · 938 Bytes
/
Cargo.toml
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
[package]
name = "silicon_nvim"
version = "0.5.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "silicon"
crate-type = ["cdylib"]
[dependencies]
anyhow = "1"
nvim-oxi = { version = "0.5.1", features = ["neovim-0-10"] }
serde = { version = '1.0.209', features = ["derive"] }
silicon = { version = '0.5.2', default-features = false, features = ["anyhow"] }
time = { version = "0.3", features = ["formatting", "local-offset"] }
thiserror = "1.0.40"
arboard = "3.4.0"
[dependencies.syntect]
version = "5.0"
default-features = false
features = ["parsing", "dump-load", "regex-onig"]
[dependencies.image]
version = "0.24"
default-features = false
features = ["jpeg", "png", "jpeg_rayon"]
[patch.crates-io]
# nvim-oxi = { git = "https://github.com/noib3/nvim-oxi", rev = "51dd4734" }
silicon = { git = "https://github.com/Aloxaf/silicon", rev = "7837ec85" }