Aidan Temple

Results 12 comments of Aidan Temple

We have reverted the patch to Nx and instead using aliases to link the files up to their correct locations. This behaves better with the jest executor which prefers to...

@lazytiger awesome to hear this is achievable with minimal patches. I'm unable to get past `fatal error: 'cstdint' file not found`, I for sure thought the sysroot environment variables would...

Initially I tried to build iOS with [[email protected]](https://github.com/denoland/rusty_v8/tree/v0.101.0) but also tried with latest. My last attempt was with the following; #### Command ```shell V8_FROM_SOURCE=1 \ PYTHON=python3 \ RUST_BACKTRACE=full \ ARCH=arm64...

Ok well I now appear to have an iOS build... Needed to add the `-isysroot/...` flag to the [bindings clang args](https://github.com/aidant/rusty_v8/blob/3731038dbc8474b633dd3b4f8c756df3e6118a87/build.rs#L154). Thanks for the pointers, will continue experiment with this...

> On this last point, is there anyway we could utilize jitless mode here to get around this? The jitless flag is what allows v8 to run on iOS and...

I don't have a Linux box running at the moment so was trying in Docker. I ran into: ``` third_party/icu/source/common/unicode/platform.h:162:13: fatal error: 'android/api-level.h' file not found ``` The command is...

I also have encountered several use case for this feature: - A scenario where the networking stack is not needed (e.g. server embedded in the same application as the client)....

@oliverbutler I've been thinking similarly and would be willing to look at implementing this as a feature given the opportunity

I've got a [pull request](https://github.com/ts-rest/ts-rest/pull/751) with a working implementation. You are welcome to [try it out using gitpkg](https://github.com/ts-rest/ts-rest/pull/751#issuecomment-2715765339).

I've been trying to achieve the same and was quite pleased when I discovered this issue calling out the `LazyConfigAcceptor`. Since initially I was thinking of using `axum_server` but was...