Skip to content

Commit

Permalink
Fix tcp functions add http parsing (#267)
Browse files Browse the repository at this point in the history
* checkpoint

* polling

* remove prints

* check point

* remove call/cc timing

* clean up

* fix wasm build

* use shared type alias

* line up imports

* fix build

* fix build

* fix docs

* add some eval tests

* attempt to fix sandboxed build

* fix build

* fix sandbox import

* disallow dylib loading for sandboxed engines
  • Loading branch information
mattwparas authored Sep 25, 2024
1 parent 327138b commit 53ba6e4
Show file tree
Hide file tree
Showing 26 changed files with 1,729 additions and 459 deletions.
186 changes: 177 additions & 9 deletions Cargo.lock

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

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ path = "src/main.rs"
# This has to line up with the workspace version above
steel-core = { path = "./crates/steel-core", version = "0.6.0", features = ["dylibs", "markdown", "stacker", "dylib-build", "sync"] }

# [features]
[features]
build-info = ["vergen"]
# Note: It does not appear that this will get propagated to any crate that depends on
# the workspace feature. This is unfortunate, since we'd like everything to actually
# use the workspace dependency. For now, if you want to test with sync, you should
Expand Down Expand Up @@ -56,3 +57,6 @@ lto = true

[profile.test]
opt-level = 2

[build-dependencies]
vergen = { version = "9.0.0", features = [ "build", "cargo", "rustc" ], optional = true}
Loading

0 comments on commit 53ba6e4

Please sign in to comment.