docs.rs failed to build zsh-sys-0.2.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
zsh-sys-0.1.1
zsh-sys 
This crate provides low-level FFI bindings to the ZSH API. It allows users to interact with ZSH internals and create ZSH modules in Rust. This crate is intended for advanced users who want to have more control over their ZSH modules and are comfortable working with unsafe code.
Quick Start
Add zsh-sys as your dependency in Cargo.toml
Usage
Raw bindings to zsh's core headers are re-exported at the crate root:
use ;
Bindings for zsh's bundled modules are split behind feature flags and exposed under namespaced submodules (boot, setup, features, enables, cleanup, finish):
// requires the `zle` feature
use complist;
unsafe ;
Most users should prefer the higher-level zsh-module crate, which wraps these bindings in a safe API.
Features
zle— bindings forSrc/Zle(types, functions, and the following modules:zutil,compctl,complist,computil,zleparameter)builtins— bindings forSrc/Builtins(rlimits,sched)modules— bindings forSrc/Modules(datetime,langinfo,parameter,termcap,terminfo,zutil)all(default) — enables all of the above