Skip to content

Update dependencies after axum reintroduction #395

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions dependencies/typedb/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")

def typedb_dependencies():
# TODO: Return typedb
git_repository(
name = "typedb_dependencies",
remote = "https://github.com/typedb/typedb-dependencies",
commit = "b4238789491bc0976407fe78a17d0a906f69c186", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_dependencies
remote = "https://github.com/farost/dependencies",
commit = "69d3c84949221b2a0747126f98786b1b1cf1fff1", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_dependencies
)

def typedb_behaviour():
Expand Down
18 changes: 9 additions & 9 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,40 +20,40 @@ features = {}
default-features = false

[dev-dependencies.syn]
features = ["clone-impls", "default", "derive", "extra-traits", "full", "parsing", "printing", "proc-macro", "visit-mut"]
version = "2.0.77"
features = ["clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"]
version = "2.0.99"
default-features = false

[dev-dependencies.proc-macro2]
features = ["default", "proc-macro"]
version = "1.0.86"
version = "1.0.94"
default-features = false

[dev-dependencies.futures]
features = ["alloc", "async-await", "default", "executor", "futures-executor", "std", "thread-pool"]
version = "0.3.30"
version = "0.3.31"
default-features = false

[dependencies]

[dependencies.pest]
features = ["default", "memchr", "std"]
version = "2.7.13"
version = "2.7.15"
default-features = false

[dependencies.regex]
features = ["default", "perf", "perf-backtrack", "perf-cache", "perf-dfa", "perf-inline", "perf-literal", "perf-onepass", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"]
version = "1.10.6"
version = "1.11.1"
default-features = false

[dependencies.pest_derive]
features = ["default", "std"]
version = "2.7.13"
version = "2.7.15"
default-features = false

[dependencies.chrono]
features = ["alloc", "android-tzdata", "clock", "default", "iana-time-zone", "js-sys", "now", "oldtime", "serde", "std", "wasm-bindgen", "wasmbind", "winapi", "windows-targets"]
version = "0.4.38"
features = ["alloc", "android-tzdata", "clock", "default", "iana-time-zone", "js-sys", "now", "oldtime", "serde", "std", "wasm-bindgen", "wasmbind", "winapi", "windows-link"]
version = "0.4.40"
default-features = false

[dependencies.itertools]
Expand Down