Skip to content

add container service for local development #4238

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

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 6 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
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
# When enabled, pnpm will automatically download and run the version of pnpm
# specified in the packageManager field of package.json.
manage-package-manager-versions = true

9 changes: 5 additions & 4 deletions build/deps/gen/dep_kj_rs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

load("@//:build/http.bzl", "http_archive")

URL = "https://github.com/capnproto/kj-rs/tarball/3f0bc9b5e6e0b56a0fa43fd024c9a68601260ead"
STRIP_PREFIX = "capnproto-kj-rs-3f0bc9b"
SHA256 = "2b4cfd8f476c6e76cc8c49bdc7e0541c51f769b8d1adab1790a400222353a102"
URL = "https://github.com/capnproto/kj-rs/tarball/d0c6021c76841905150649e308fc03b85753f775"
STRIP_PREFIX = "capnproto-kj-rs-d0c6021"
SHA256 = "d7d6f750d9e12cb66ff04fd1fcf56657d16589b9b8e21f45dc1da856d0a251d6"
TYPE = "tgz"
COMMIT = "3f0bc9b5e6e0b56a0fa43fd024c9a68601260ead"
COMMIT = "d0c6021c76841905150649e308fc03b85753f775"

def dep_kj_rs():
http_archive(
Expand All @@ -15,4 +15,5 @@ def dep_kj_rs():
strip_prefix = STRIP_PREFIX,
type = TYPE,
sha256 = SHA256,
repo_mapping = {"@crates.io": "@crates_vendor"},
)
8 changes: 4 additions & 4 deletions build/deps/gen/dep_workerd_cxx.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

load("@//:build/http.bzl", "http_archive")

URL = "https://github.com/cloudflare/workerd-cxx/tarball/867a8b47b0236097483f50b39aacdfa6f1f25a68"
STRIP_PREFIX = "cloudflare-workerd-cxx-867a8b4"
SHA256 = "d781648c2d82d075208cd9db071bd237124889d92ec8ed10d38a2212a14bee0d"
URL = "https://github.com/cloudflare/workerd-cxx/tarball/be8c5cab847390ecd6947d9fa293c40e46c56e15"
STRIP_PREFIX = "cloudflare-workerd-cxx-be8c5ca"
SHA256 = "c0c97a93c2ab660af238712cf735194894b4064c6285b49d9552cd4ede50c257"
TYPE = "tgz"
COMMIT = "867a8b47b0236097483f50b39aacdfa6f1f25a68"
COMMIT = "be8c5cab847390ecd6947d9fa293c40e46c56e15"

def dep_workerd_cxx():
http_archive(
Expand Down
6 changes: 4 additions & 2 deletions build/deps/shared_deps.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,10 @@
"type": "github_tarball",
"owner": "capnproto",
"branch": "main",
"repo": "kj-rs"
"repo": "kj-rs",
"repo_mapping": {
"@crates.io": "@crates_vendor"
}
}
]
}

1 change: 1 addition & 0 deletions compile_flags.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
-isystembazel-bin/src/rust/cxx-integration/_virtual_includes/cxx-include/
-isystembazel-bin/src/rust/cxx-integration/_virtual_includes/cxx-integration@cxx
-isystembazel-bin/src/rust/cxx-integration-test/_virtual_includes/cxx-integration-test@cxx
-isystembazel-bin/src/rust/container/_virtual_includes/container@cxx
-isystembazel-bin/src/rust/dns/_virtual_includes/dns@cxx
-D_FORTIFY_SOURCE=1
-D_LIBCPP_REMOVE_TRANSITIVE_INCLUDES
Expand Down
Loading
Loading