aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig32
1 files changed, 32 insertions, 0 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
new file mode 100644
index 0000000..753d7f2
--- /dev/null
+++ b/Cargo.toml.orig
@@ -0,0 +1,32 @@
+[package]
+name = "android_logger"
+version = "0.8.6"
+authors = ["The android_logger Developers"]
+license = "MIT OR Apache-2.0"
+readme = "README.md"
+repository = "https://github.com/Nercury/android_logger-rs"
+description = """
+A logging implementation for `log` which hooks to android log output.
+"""
+keywords = ["android", "bindings", "log", "logger"]
+categories = ["api-bindings"]
+
+[features]
+default = ["regex"]
+regex = ["env_logger/regex"]
+
+[dependencies]
+lazy_static = "1.0"
+
+[dependencies.log]
+version = "0.4"
+
+[dependencies.android_log-sys]
+version = "0.1"
+
+[dependencies.env_logger]
+version = "0.7"
+default-features = false
+
+[badges]
+travis-ci = { repository = "Nercury/android_logger-rs" }