diff --git a/examples b/examples new file mode 120000 index 0000000..f587643 --- /dev/null +++ b/examples @@ -0,0 +1 @@ +scopegraphs/examples \ No newline at end of file diff --git a/scopegraphs-macros/Cargo.toml b/scopegraphs-macros/Cargo.toml index 8200f17..25c2b16 100644 --- a/scopegraphs-macros/Cargo.toml +++ b/scopegraphs-macros/Cargo.toml @@ -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" } diff --git a/scopegraphs-regular-expressions/Cargo.toml b/scopegraphs-regular-expressions/Cargo.toml index 3c58de0..68b7ffd 100644 --- a/scopegraphs-regular-expressions/Cargo.toml +++ b/scopegraphs-regular-expressions/Cargo.toml @@ -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 = [] diff --git a/scopegraphs-render-docs/Cargo.toml b/scopegraphs-render-docs/Cargo.toml index 6fef306..f202476 100644 --- a/scopegraphs-render-docs/Cargo.toml +++ b/scopegraphs-render-docs/Cargo.toml @@ -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" diff --git a/scopegraphs/Cargo.toml b/scopegraphs/Cargo.toml index 3c6324a..e3935e7 100644 --- a/scopegraphs/Cargo.toml +++ b/scopegraphs/Cargo.toml @@ -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"]