File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed
Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "ast-generator"
33version = " 0.1.0"
44edition = " 2021"
55
6- # When updating these dependencies, run `misc/bazel/3rdparty /update_cargo_deps.sh`
6+ # When updating these dependencies, run `rust /update_cargo_deps.sh`
77[dependencies ]
88ungrammar = " 1.16.1"
99proc-macro2 = " 1.0.33"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "codeql-rust"
33version = " 0.1.0"
44edition = " 2021"
55
6- # When updating these dependencies, run `misc/bazel/3rdparty /update_cargo_deps.sh`
6+ # When updating these dependencies, run `rust /update_cargo_deps.sh`
77[dependencies ]
88anyhow = " 1.0.86"
99clap = { version = " 4.5.16" , features = [" derive" ] }
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ edition = "2021"
66[lib ]
77proc-macro = true
88
9- # When updating these dependencies, run `misc/bazel/3rdparty /update_cargo_deps.sh`
9+ # When updating these dependencies, run `rust /update_cargo_deps.sh`
1010[dependencies ]
1111quote = " 1.0.37"
1212syn = { version = " 2.0.77" , features = [" full" ] }
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -eu
4+
5+ SCRIPT_DIR=$( cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " & > /dev/null && pwd )
6+
7+ cd " $SCRIPT_DIR /.."
8+ time bazel run //misc/bazel/3rdparty:vendor_tree_sitter_extractors
9+ bazel mod tidy
You can’t perform that action at this time.
0 commit comments