summaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2020-04-17 14:13:42 -0700
committerChih-Hung Hsieh <chh@google.com>2020-04-17 14:15:15 -0700
commit049e87261669b44af22d2a141b3a207078b78889 (patch)
tree8618050c1daae5ae99d07fec447ca68632f8e3f3 /Cargo.toml.orig
parent537dd30d40523e41935e72f71eb884cc780c3ecb (diff)
downloadcexpr-049e87261669b44af22d2a141b3a207078b78889.tar.gz
Import 'cexpr' package version 0.4.0
* Add OWNERS * No Android.bp yet Bug: 152884384 Test: make Change-Id: Ib60c364b0f1e8dcfd7c187bd989467be47aa527a
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig19
1 files changed, 19 insertions, 0 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
new file mode 100644
index 0000000..d6ab0de
--- /dev/null
+++ b/Cargo.toml.orig
@@ -0,0 +1,19 @@
+[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"