-
Notifications
You must be signed in to change notification settings - Fork 2
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
fix: support WASM/webR builds #50
Conversation
Builds successfully, but |
This comment was marked as outdated.
This comment was marked as outdated.
It works now. > install.packages("rlang")
Downloading webR package: rlang
> install.packages("neopolars", repos = "https://eitsupi.r-universe.dev")
Downloading webR package: neopolars
> library(neopolars)
> as_polars_df(mtcars)$select("cyl", "am")
shape: (32, 2)
┌─────┬─────┐
│ cyl ┆ am │
│ --- ┆ --- │
│ f64 ┆ f64 │
╞═════╪═════╡
│ 6.0 ┆ 1.0 │
│ 6.0 ┆ 1.0 │
│ 4.0 ┆ 1.0 │
│ 6.0 ┆ 0.0 │
│ 8.0 ┆ 0.0 │
│ … ┆ … │
│ 4.0 ┆ 1.0 │
│ 8.0 ┆ 1.0 │
│ 6.0 ┆ 1.0 │
│ 8.0 ┆ 1.0 │
│ 4.0 ┆ 1.0 │
└─────┴─────┘ |
283ceb6
to
b57e2b0
Compare
I'm suspecting the cc crate, which was updated within a day. I'm seeing a similar error. https://github.com/rust-lang/cc-rs/releases/tag/cc-v1.2.8 |
Thank you for your comment. |
No description provided.