Skip to content

Commit e6eb49f

Browse files
committed
Set up workspace - Forked from
[email protected]:RustPython/RustPython.git ff5076b12c075b3e87c0ac2971e390b4a209d14f
1 parent 80109b1 commit e6eb49f

File tree

3 files changed

+99
-7
lines changed

3 files changed

+99
-7
lines changed

.gitignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Cargo.lock
2+
3+
/target
4+
/*/target
5+
**/*.rs.bk
6+
**/*.bytecode
7+
__pycache__
8+
**/*.pytest_cache
9+
.*sw*
10+
.vscode
11+
.idea/
12+
13+
flame-graph.html
14+
flame.txt
15+
flamescope.json
16+

Cargo.toml

+62-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,66 @@
1-
[package]
2-
name = "rustpython-compiler"
1+
[workspace.package]
32
version = "0.2.0"
4-
description = "A usability wrapper around rustpython-parser and rustpython-compiler-core"
53
authors = ["RustPython Team"]
64
edition = "2021"
5+
rust-version = "1.67.1"
6+
description = "Python parser and its dependencies."
7+
repository = "https://github.com/RustPython/Parser"
8+
license = "MIT"
9+
include = ["LICENSE", "Cargo.toml", "src/**/*.rs"]
710

8-
[dependencies]
9-
rustpython-compiler-core = { path = "core" }
10-
rustpython-codegen = { path = "codegen" }
11-
rustpython-parser = { path = "parser" }
11+
[workspace]
12+
resolver = "2"
13+
members = [
14+
"ast", "core", "literal", "parser",
15+
]
16+
17+
[workspace.dependencies]
18+
ahash = "0.7.6"
19+
anyhow = "1.0.45"
20+
ascii = "1.0"
21+
atty = "0.2.14"
22+
bincode = "1.3.3"
23+
bitflags = "1.3.2"
24+
bstr = "0.2.17"
25+
cfg-if = "1.0"
26+
chrono = "0.4.19"
27+
crossbeam-utils = "0.8.9"
28+
flame = "0.2.2"
29+
glob = "0.3"
30+
hex = "0.4.3"
31+
indexmap = "1.8.1"
32+
insta = "1.14.0"
33+
itertools = "0.10.3"
34+
libc = "0.2.133"
35+
log = "0.4.16"
36+
nix = "0.26"
37+
num-complex = "0.4.0"
38+
num-bigint = "0.4.3"
39+
num-integer = "0.1.44"
40+
num-rational = "0.4.0"
41+
num-traits = "0.2"
42+
num_enum = "0.5.7"
43+
once_cell = "1.13"
44+
parking_lot = "0.12"
45+
paste = "1.0.7"
46+
rand = "0.8.5"
47+
rustyline = "11"
48+
serde = "1.0"
49+
schannel = "0.1.19"
50+
static_assertions = "1.1"
51+
syn = "1.0.91"
52+
thiserror = "1.0"
53+
thread_local = "1.1.4"
54+
unicode_names2 = { version = "0.6.0", git = "https://github.com/youknowone/unicode_names2.git", rev = "4ce16aa85cbcdd9cc830410f1a72ef9a235f2fde" }
55+
widestring = "0.5.1"
56+
57+
[profile.dev.package."*"]
58+
opt-level = 3
59+
60+
[profile.bench]
61+
lto = "thin"
62+
codegen-units = 1
63+
opt-level = 3
64+
65+
[profile.release]
66+
lto = "thin"

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 RustPython Team
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.

0 commit comments

Comments
 (0)