aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2020-08-24 14:31:44 -0700
committerChih-Hung Hsieh <chh@google.com>2020-08-24 23:05:28 -0700
commit32890e15d2603541071a88b0bca3ad1d37427a8b (patch)
tree0b8fe97cf399abd1cdf0d3d69bd9ed72ba8c6818 /Cargo.toml.orig
parent703eda4a77d317260d18d91927678c9e32a106f1 (diff)
downloadlibloading-32890e15d2603541071a88b0bca3ad1d37427a8b.tar.gz
Upgrade rust/crates/libloading to 0.6.3
* Regenerate Android.bp with new dependency of libcfg_if. Test: make Change-Id: I8101500c0ec66ad20aed56e19b77f767920067d4
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig24
1 files changed, 20 insertions, 4 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index bd1114b..1dfd507 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,13 +1,18 @@
[package]
name = "libloading"
-version = "0.6.2"
+# When bumping
+# * Don’t forget to add an entry to `src/changelog.rs`
+# * If bumping a incompatible version, adjust documentation in `src/lib.rs`
+version = "0.6.3"
authors = ["Simonas Kazlauskas <libloading@kazlauskas.me>"]
-build = "build.rs"
-description = "A safer binding to platform’s dynamic library loading utilities"
-keywords = ["dlopen", "load", "shared", "dylib"]
license = "ISC"
repository = "https://github.com/nagisa/rust_libloading/"
documentation = "https://docs.rs/libloading/"
+readme = "README.mkd"
+description = "A safer binding to platform’s dynamic library loading utilities"
+keywords = ["dlopen", "load", "shared", "dylib"]
+categories = ["api-bindings"]
+build = "build.rs"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
@@ -16,3 +21,14 @@ features = [
"errhandlingapi",
"libloaderapi",
]
+
+[target.'cfg(unix)'.dependencies.cfg-if]
+version = "0.1"
+
+[dev-dependencies]
+libc = "0.2"
+static_assertions = "1.1"
+
+[package.metadata.docs.rs]
+all-features = true
+rustdoc-args = ["--cfg", "docsrs"]