-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 783 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 783 Bytes
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
[package]
name = "echo_native"
version = "0.2.0"
edition = "2021"
[lib]
name = "echo_native"
crate-type = ["cdylib"]
path = "native/lib.rs"
[dependencies]
anyhow = "1.0"
nvim-oxi = { git = "https://github.com/noib3/nvim-oxi.git", version = "0.5.1", optional = true }
nvim-oxi-api = { git = "https://github.com/noib3/nvim-oxi.git", version = "0.5.1", optional = true }
optfield = "^0.4"
rodio = { version = "0.20.1", features = [] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
thiserror = "^2.0"
tokio = { version = "^1.42", features = ["full"] }
[features]
default = ["stable"]
stable = ["nvim-oxi/neovim-0-10", "nvim-oxi-api/neovim-0-10"]
nightly = ["nvim-oxi/neovim-nightly", "nvim-oxi-api/neovim-nightly"]