Skip to content

Commit

Permalink
update and unpin deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jdonszelmann committed Jun 4, 2024
1 parent 19c76d7 commit 8f85700
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions scopegraphs-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
syn = { version = "2.0", features = [] }
quote = "1.0"
syn = { version = "2", features = [] }
quote = "1"
scopegraphs-regular-expressions = { path = "../scopegraphs-regular-expressions", features = ["dot"], version = "0.3" }
proc-macro2 = "1.0"
proc-macro2 = "1"

[dev-dependencies]
scopegraphs = { path = "../scopegraphs" }
Expand Down
8 changes: 4 additions & 4 deletions scopegraphs-regular-expressions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ rust-version = "1.75"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
syn = { version = "2.0.29", default-features = false, features = ["parsing", "derive", "printing", "clone-impls"] }
quote = { version = "1.0.33" }
proc-macro2 = "1.0.69"
thiserror = "1.0.50"
syn = { version = "2", default-features = false, features = ["parsing", "derive", "printing", "clone-impls"] }
quote = { version = "1" }
proc-macro2 = "1"
thiserror = "1"

[features]
dot = []
Expand Down
4 changes: 2 additions & 2 deletions scopegraphs-render-docs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ proc-macro = true
quote = "1"
proc-macro2 = "1"
proc-macro-error = { version = "1", default-features = false }
itertools = "0.10"
itertools = "0.13"
syn = "2"
include_dir = "0.7"
uuid = { version = "1.8.0", features = ["v4"] }
uuid = { version = "1.8", features = ["v4"] }

[dev-dependencies]
pretty_assertions = "1"
18 changes: 9 additions & 9 deletions scopegraphs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@ rust-version = "1.75"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
futures = { version = "0.3.30", default-features = false, features = ["std"] }
futures = { version = "0.3", default-features = false, features = ["std"] }

bumpalo = "3.14.0"
bumpalo = "3"
scopegraphs-prust-lib = { version = "0.1.0" }
log = "0.4.20"
log = "0.4"

scopegraphs-macros = { path = "../scopegraphs-macros", version = "0.3" }
scopegraphs-regular-expressions = { path = "../scopegraphs-regular-expressions", version = "0.3" }
scopegraphs-render-docs = { path = "../scopegraphs-render-docs", version = "0.3", optional = true }

[dev-dependencies]
env_logger = "0.10.1"
ctor = "0.2.5"
futures = { version = "0.3.30", default-features = false, features = [
env_logger = "0.11"
ctor = "0.2"
futures = { version = "0.3", default-features = false, features = [
"alloc",
"executor",
] }
smol = "2.0.0"
async-recursion = "1.1.1"
winnow = "0.6.8"
smol = "2"
async-recursion = "1"
winnow = "0.6"

[features]
default = ["dot", "dynamic-regex"]
Expand Down

0 comments on commit 8f85700

Please sign in to comment.