Skip to content

Commit

Permalink
Remove not used regex dependency for dev build
Browse files Browse the repository at this point in the history
  • Loading branch information
Dushistov committed Nov 11, 2024
1 parent 1300a13 commit ce01084
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion android-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jni-sys = "0.3.0"

[build-dependencies]
flapigen = { path = "../macroslib" }
env_logger = "0.11"
env_logger = { version = "0.11.3", default-features = false }
2 changes: 1 addition & 1 deletion cpp_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name = "flapigen_test"
crate-type = ["staticlib"]

[build-dependencies]
env_logger = "0.11.3"
env_logger = { version = "0.11.3", default-features = false }
log = "0.4.6"
flapigen = { path = "../macroslib" }

Expand Down
2 changes: 1 addition & 1 deletion debug-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ authors = ["Evgeniy A. Dushistov <[email protected]>"]
edition = "2021"

[dependencies]
env_logger = "0.11.3"
env_logger = { version = "0.11.3", default-features = false }
flapigen = { path = "../macroslib" }
4 changes: 2 additions & 2 deletions jni_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ crate-type = ["cdylib"]
[dependencies]
log = "0.4.6"
chrono = "0.4.6"
env_logger = "0.11.3"
env_logger = { version = "0.11.3", default-features = false }

[build-dependencies]
env_logger = "0.11.3"
env_logger = { version = "0.11.3", default-features = false }
log = "0.4.6"
flapigen = { path = "../macroslib" }
bindgen = { version = "0.69.4", default-features = false, features = ["logging", "runtime", "which-rustfmt"] }
6 changes: 3 additions & 3 deletions macroslib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ rust-version = "1.82.0"

[dependencies]
syn = { version = "2.0.87", features = ["full", "extra-traits", "visit-mut", "visit"] }
quote = "1.0"
proc-macro2 = { version = "1.0", features = ["span-locations"] }
quote = "1.0.37"
proc-macro2 = { version = "1.0.83", features = ["span-locations"] }
log = "0.4.6"
petgraph = { version = "0.6.0", default-features = false }
bitflags = "2.5.0"
Expand All @@ -26,7 +26,7 @@ heck = { version = "0.5.0", default-features = false }
which = { version = "4.2.4", default-features = false }

[dev-dependencies]
env_logger = "0.11.3"
env_logger = { version = "0.11.3", default-features = false }
pulldown-cmark = "0.9.1"
tempfile = "3.0"
jni-sys = "0.3.0"
Expand Down
2 changes: 1 addition & 1 deletion python_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ crate-type = ["cdylib"]
cpython = { version = "0.7.0", features = ["extension-module"] }

[build-dependencies]
env_logger = "0.11.3"
env_logger = { version = "0.11.3", default-features = false }
log = "0.4.6"
flapigen = { path = "../macroslib" }

0 comments on commit ce01084

Please sign in to comment.