[package]
edition = "2021"
rust-version = "1.82"
name = "libedit"
version = "0.2.1"
build = "build.rs"
include = [
"src/**",
"build.rs",
"examples/**",
"tests/**",
"Cargo.toml",
"../LICENSE",
"../README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Rust bindings to the libedit line-editing library"
readme = "README.md"
keywords = [
"libedit",
"editline",
"line-editor",
"readline",
]
categories = ["command-line-interface"]
license = "BSD-2-Clause"
repository = "https://github.com/ogital-net/libedit-rs"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "libedit"
path = "src/lib.rs"
[[example]]
name = "repl"
path = "examples/repl.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.libc]
version = "0.2"
[dependencies.libedit-sys]
version = "0.2.0"
[build-dependencies.cc]
version = "1"