Skip to content

Commit f0b234f

Browse files
committed
Initial commit
0 parents  commit f0b234f

File tree

233 files changed

+86233
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

233 files changed

+86233
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
target/
2+
**/*.rs.bk
3+
Cargo.lock

Cargo.toml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[package]
2+
name = "lua-src"
3+
version = "535.0.0+540b"
4+
authors = ["Aleksandr Orlenko <zxteam@protonmail.com>"]
5+
edition = "2018"
6+
repository = "https://github.com/khvzak/lua-src-rs"
7+
keywords = ["lua", "lua51", "lua52", "lua53", "lua54"]
8+
readme = "README.md"
9+
license = "MIT"
10+
description = """
11+
Sources of Lua 5.1/5.2/5.3/5.4(beta) and logic to build them.
12+
"""
13+
14+
[workspace]
15+
members = ["testcrate"]
16+
17+
[dependencies]
18+
cc = "1.0"

LICENSE

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Aleksandr Orlenko
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+
23+
### Lua license ###
24+
25+
Copyright © 1994–2017 Lua.org, PUC-Rio.
26+
27+
Permission is hereby granted, free of charge, to any person obtaining a copy of
28+
this software and associated documentation files (the "Software"), to deal in
29+
the Software without restriction, including without limitation the rights to
30+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
31+
of the Software, and to permit persons to whom the Software is furnished to do
32+
so, subject to the following conditions:
33+
34+
The above copyright notice and this permission notice shall be included in all
35+
copies or substantial portions of the Software.
36+
37+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
38+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
39+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
40+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
41+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
42+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
43+
SOFTWARE.

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# lua-src
2+
3+
This crate contains the sources of Lua 5.1/5.2/5.3/5.4(beta) and logic to build them.
4+
Intended to be consumed by the [mlua](https://crates.io/crates/mlua) crate.
5+
6+
# License
7+
8+
This project is licensed under [MIT license](http://opensource.org/licenses/MIT)

0 commit comments

Comments
 (0)