Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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 = "76245eebd5c2ce4ec73b0e2bf70b812809255077", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_dependencies
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

)

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