Skip to content

Commit

Permalink
More deps
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasLYang committed Jun 7, 2024
1 parent 918fc74 commit f29eac4
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 11 deletions.
40 changes: 38 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 14 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,23 @@ unix-archive = ".tar.gz"
pr-run-mode = "plan"

[workspace.metadata.dist.dependencies.homebrew]
protobuf = { version = "*", targets = ["aarch64-apple-darwin", "x86_64-apple-darwin"] }
protobuf = "*"
capnp = "*"

[workspace.metadata.dist.dependencies.chocolatey]
protoc = { version = "*", targets = ["x86_64-pc-windows-msvc"] }
protoc = "27.1.0"
capnproto = "*"

[workspace.metadata.dist.dependencies.apt]
protobuf-compiler = { version = "*", targets = ["aarch64-unknown-linux-musl"] }
aarch64-linux-musl-gcc = { version = "*", targets = ["aarch64-unknown-linux-musl"] }
build-essential = "*"
musl-tools = "*"
musl-dev = "*"
clang = "*"
llvm = "*"
capnproto = "*"
gcc-aarch64-linux-gnu = { version = "*", targets = ["aarch64-unknown-linux-musl"] }
binutils-aarch64-linux-gnu = { version = "*", targets = ["aarch64-unknown-linux-musl"] }
protobuf-compiler = "*"

[workspace.lints.clippy]
too_many_arguments = "allow"
Expand Down Expand Up @@ -232,7 +241,7 @@ wax = { path = "crates/turborepo-wax" }
turborepo-vercel-api = { path = "crates/turborepo-vercel-api" }
turborepo-vercel-api-mock = { path = "crates/turborepo-vercel-api-mock" }
turborepo-vt100 = { path = "crates/turborepo-vt100" }
update-informer = { path = "crates/update-informer" }
update-informer = { path = "crates/update-informer", default-features = false, features = ["reqwest"] }

# Be careful when selecting tls backend, including change default tls backend.
# If you changed, must verify with ALL build targets with next-swc to ensure
Expand Down
2 changes: 1 addition & 1 deletion crates/turborepo-lib/src/daemon/proto/turbod.proto
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ message DiscoverPackagesResponse {

message PackageFiles {
string package_json = 1;
optional string turbo_json = 2;
string turbo_json = 2;
}

enum PackageManager {
Expand Down
4 changes: 1 addition & 3 deletions crates/turborepo-updater/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,4 @@ reqwest = { workspace = true, features = ["json", "blocking"] }
semver = { workspace = true }
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
update-informer = { workspace = true, default-features = false, features = [
"reqwest",
] }
update-informer = { workspace = true }

0 comments on commit f29eac4

Please sign in to comment.