Skip to content
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

feat: language agnostic rust codegen #44

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
822fa3c
feat: loaders and function codegen
eliassjogreen Jan 12, 2022
4f834c4
feat: Type aliasing!
eliassjogreen Jan 12, 2022
afee87c
feat: clippy and export option on loaders
eliassjogreen Jan 12, 2022
2835c50
fix: clippy
eliassjogreen Jan 12, 2022
c0d9afe
refactor: split up types
eliassjogreen Jan 12, 2022
0b49f0f
fix: clippy
eliassjogreen Jan 12, 2022
b344110
split typescript type out of into and from props
eliassjogreen Jan 13, 2022
f976bff
change TypeConverter into and from properties
eliassjogreen Jan 14, 2022
258605f
fix parameter ordering
eliassjogreen Jan 14, 2022
e98e9ea
work some more on structs
eliassjogreen Jan 14, 2022
9e7b400
feat: struct alignment
eliassjogreen Jan 14, 2022
f082c97
fmt
eliassjogreen Jan 14, 2022
0946a64
struct pointer properties
eliassjogreen Jan 14, 2022
42fbec3
feat: buffer support for structs
eliassjogreen Jan 15, 2022
54c3144
chore: fmt
eliassjogreen Jan 15, 2022
a72af9e
chore: clippy
eliassjogreen Jan 15, 2022
138bf2b
feat: string in struct into support
eliassjogreen Jan 18, 2022
fc32145
feat: struct into
eliassjogreen Jan 18, 2022
155b3ea
chore: clippy
eliassjogreen Jan 18, 2022
d201766
feat: tuples
eliassjogreen Jan 18, 2022
f63f913
fix: clippy
eliassjogreen Jan 18, 2022
e52a61c
feat: from struct
eliassjogreen Jan 21, 2022
c3f0fbc
feat: use DataView
eliassjogreen Jan 23, 2022
af564d7
fix: clippy
eliassjogreen Jan 23, 2022
5e9be7a
feat: start work on macro stuff...
eliassjogreen Jan 29, 2022
1c07dcb
feat: shitty cli and json -> ts
eliassjogreen Feb 10, 2022
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
2 changes: 1 addition & 1 deletion .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
max_width = 80
tab_spaces = 2
edition = "2018"
edition = "2021"
242 changes: 224 additions & 18 deletions Cargo.lock

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

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[workspace]
members = [
"deno_bindgen_macro",
"cli",
"codegen",
"deno_bindgen",
"macro"
]
exclude = ["example/"]

Loading