# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "nvim-oxi" version = "0.5.1" build = "build.rs" autobins = false autoexamples = false autotests = false autobenches = false description = "Rust bindings to all things Neovim" documentation = "https://docs.rs/nvim-oxi" readme = "README.md" keywords = [ "bindings", "neovim", "nvim", ] license = "MIT" repository = "https://github.com/noib3/nvim-oxi" [package.metadata.docs.rs] features = [ "neovim-nightly", "libuv", "mlua", "test", "__vendored_luajit", ] rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "nvim_oxi" path = "src/lib.rs" [[example]] name = "api" crate-type = ["cdylib"] path = "examples/api.rs" [[example]] name = "calc" crate-type = ["cdylib"] path = "examples/calc.rs" [[example]] name = "libuv" crate-type = ["cdylib"] path = "examples/libuv.rs" required-features = ["libuv"] [[example]] name = "mechanic" crate-type = ["cdylib"] path = "examples/mechanic.rs" [[example]] name = "mlua" crate-type = ["cdylib"] path = "examples/mlua.rs" required-features = ["mlua"] [dependencies.api] version = "0.5.1" package = "nvim-oxi-api" [dependencies.libuv] version = "0.5.1" optional = true package = "nvim-oxi-libuv" [dependencies.luajit] version = "0.5.1" package = "nvim-oxi-luajit" [dependencies.macros] version = "0.5.1" features = ["plugin"] package = "nvim-oxi-macros" [dependencies.miniserde] version = "0.1" optional = true [dependencies.mlua] version = "0.9" features = ["luajit"] optional = true [dependencies.thiserror] version = "1.0" [dependencies.types] version = "0.5.1" features = ["serde"] package = "nvim-oxi-types" [dev-dependencies.mlua] version = "0.9" features = [ "luajit", "module", ] [dev-dependencies.serde] version = "1.0" features = ["derive"] [dev-dependencies.tokio] version = "1.0" features = ["full"] [features] __vendored_luajit = ["mlua/vendored"] libuv = ["dep:libuv"] mlua = ["dep:mlua"] neovim-0-10 = ["api/neovim-0-10"] neovim-0-9 = ["api/neovim-0-9"] neovim-nightly = ["api/neovim-nightly"] test = [ "macros/test", "miniserde", ] test-terminator = [ "test", "libuv", "macros/test-terminator", ]