-
-
Notifications
You must be signed in to change notification settings - Fork 413
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial version of a JS -> Rust conversion trait.
- Loading branch information
Showing
13 changed files
with
584 additions
and
75 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[package] | ||
name = "boa_derive" | ||
version = "0.16.0" | ||
edition = "2021" | ||
rust-version = "1.60" | ||
authors = ["boa-dev"] | ||
description = "Ths crate adds derive macros for the main boa_engine crate." | ||
repository = "https://github.com/boa-dev/boa" | ||
license = "Unlicense/MIT" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[lib] | ||
proc-macro = true | ||
|
||
[dependencies] | ||
syn = "1.0.99" | ||
quote = "1.0.21" | ||
proc-macro2 = "1.0.43" | ||
|
||
[dev-dependencies] | ||
trybuild = "1.0.64" | ||
boa_engine.workspace = true |
Oops, something went wrong.