From bce4a4179f47fda251c8afdf8ddb580998bb039a Mon Sep 17 00:00:00 2001 From: "Evgeniy A. Dushistov" Date: Tue, 4 Jun 2024 23:29:21 +0300 Subject: [PATCH] update env_logger,bindgen,bitflags --- android-example/Cargo.toml | 2 +- android-tests/Cargo.toml | 2 +- cpp_tests/Cargo.toml | 2 +- debug-util/Cargo.toml | 2 +- jni_tests/Cargo.toml | 6 +++--- macroslib/Cargo.toml | 4 ++-- python_tests/Cargo.toml | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/android-example/Cargo.toml b/android-example/Cargo.toml index 8b701a50..ba29db2d 100644 --- a/android-example/Cargo.toml +++ b/android-example/Cargo.toml @@ -17,4 +17,4 @@ jni-sys = "0.3.0" [build-dependencies] flapigen = { path = "../macroslib" } -env_logger = "0.10" \ No newline at end of file +env_logger = "0.11" \ No newline at end of file diff --git a/android-tests/Cargo.toml b/android-tests/Cargo.toml index c5c5ae5f..7f098019 100644 --- a/android-tests/Cargo.toml +++ b/android-tests/Cargo.toml @@ -16,6 +16,6 @@ android_logger = { version = "0.13.1", default-features = false } [build-dependencies] flapigen = { path = "../macroslib" } -bindgen = { version = "0.65.1", default-features = false, features = ["logging", "runtime", "which-rustfmt"] } +bindgen = { version = "0.69.4", default-features = false, features = ["logging", "runtime", "which-rustfmt"] } walkdir = "2.3.2" cc = "1.0.67" \ No newline at end of file diff --git a/cpp_tests/Cargo.toml b/cpp_tests/Cargo.toml index b1a31ae2..74e1a2c7 100644 --- a/cpp_tests/Cargo.toml +++ b/cpp_tests/Cargo.toml @@ -10,7 +10,7 @@ name = "flapigen_test" crate-type = ["staticlib"] [build-dependencies] -env_logger = "0.10.0" +env_logger = "0.11.3" log = "0.4.6" flapigen = { path = "../macroslib" } diff --git a/debug-util/Cargo.toml b/debug-util/Cargo.toml index ec7c1810..e81abe4f 100644 --- a/debug-util/Cargo.toml +++ b/debug-util/Cargo.toml @@ -5,5 +5,5 @@ authors = ["Evgeniy A. Dushistov "] edition = "2018" [dependencies] -env_logger = "0.10.0" +env_logger = "0.11.3" flapigen = { path = "../macroslib" } \ No newline at end of file diff --git a/jni_tests/Cargo.toml b/jni_tests/Cargo.toml index 52d1dc82..4010f621 100644 --- a/jni_tests/Cargo.toml +++ b/jni_tests/Cargo.toml @@ -12,10 +12,10 @@ crate-type = ["cdylib"] [dependencies] log = "0.4.6" chrono = "0.4.6" -env_logger = "0.10.0" +env_logger = "0.11.3" [build-dependencies] -env_logger = "0.10.0" +env_logger = "0.11.3" log = "0.4.6" flapigen = { path = "../macroslib" } -bindgen = { version = "0.65.1", default-features = false, features = ["logging", "runtime", "which-rustfmt"] } +bindgen = { version = "0.69.4", default-features = false, features = ["logging", "runtime", "which-rustfmt"] } diff --git a/macroslib/Cargo.toml b/macroslib/Cargo.toml index e54d9b7f..26079002 100644 --- a/macroslib/Cargo.toml +++ b/macroslib/Cargo.toml @@ -16,7 +16,7 @@ quote = "1.0" proc-macro2 = { version = "1.0", features = ["span-locations"] } log = "0.4.6" petgraph = { version = "0.6.0", default-features = false } -bitflags = "1.0.4" +bitflags = "2.5.0" lazy_static = "1.0.2" smallvec = "1.1.0" rustc-hash = "1.0.1" @@ -26,7 +26,7 @@ heck = { version = "0.4.0", default-features = false } which = { version = "4.2.4", default-features = false } [dev-dependencies] -env_logger = "0.10.0" +env_logger = "0.11.3" pulldown-cmark = "0.9.1" tempfile = "3.0" jni-sys = "0.3.0" diff --git a/python_tests/Cargo.toml b/python_tests/Cargo.toml index 8efd0b83..ba879d5a 100644 --- a/python_tests/Cargo.toml +++ b/python_tests/Cargo.toml @@ -13,6 +13,6 @@ crate-type = ["cdylib"] cpython = { version = "0.7.0", features = ["extension-module"] } [build-dependencies] -env_logger = "0.10.0" +env_logger = "0.11.3" log = "0.4.6" flapigen = { path = "../macroslib" }