File tree 4 files changed +31
-0
lines changed
4 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ /target
2
+ ** /* .rs.bk
3
+
4
+
5
+ # Added by cargo
6
+ #
7
+ # already existing elements are commented out
8
+
9
+ # /target
10
+ # **/*.rs.bk
11
+ Cargo.lock
12
+ .DS_Store
Original file line number Diff line number Diff line change
1
+ [package ]
2
+ name = " quickjs-rs"
3
+ version = " 0.1.0"
4
+ authors = [" llgoer <llgoer@github.com>" ]
5
+ edition = " 2018"
6
+ repository = " https://github.com/quickjs-zh/quickjs-rs"
7
+ homepage = " https://bellard.org/quickjs/"
8
+ documentation = " https://github.com/quickjs-zh/QuickJS"
9
+ description = " Rust bindings to Fabrice Bellards QuickJS Javascript Engine"
10
+
11
+ [dependencies ]
Original file line number Diff line number Diff line change 1
1
# quickjs-rs
2
+
2
3
Rust bindings to QuickJS
Original file line number Diff line number Diff line change
1
+ #[ cfg( test) ]
2
+ mod tests {
3
+ #[ test]
4
+ fn it_works ( ) {
5
+ assert_eq ! ( 2 + 2 , 4 ) ;
6
+ }
7
+ }
You can’t perform that action at this time.
0 commit comments