You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
524 B

[package]
name = "cexpr"
version = "0.4.0"
edition = "2018"
authors = ["Jethro Beekman <jethro@jbeekman.nl>"]
license = "Apache-2.0/MIT"
description = "A C expression parser and evaluator"
documentation = "https://docs.rs/cexpr/"
repository = "https://github.com/jethrogb/rust-cexpr"
keywords = ["C","expression","parser"]
[badges]
travis-ci = { repository = "jethrogb/rust-cexpr" }
[dependencies]
nom = { version = "5", default-features = false, features = ["std"] }
[dev-dependencies]
clang-sys = ">= 0.13.0, < 0.29.0"