Skip to content

Commit daedb27

Browse files
committed
Convert playground/deps submodules to regular directories
1 parent 5b63fc7 commit daedb27

File tree

201 files changed

+29323
-3
lines changed

Some content is hidden

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

201 files changed

+29323
-3
lines changed

playground/deps/tsrkit-asm

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
target
2+
__pycache__
3+
.venv
4+
.pytest_cache
5+
6+
*.so
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tab_spaces = 4

playground/deps/tsrkit-asm/Cargo.lock

Lines changed: 318 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[package]
2+
name = "tsrkit-asm"
3+
version = "0.1.0"
4+
authors = ["Jan Bujak <[email protected]>", "Parity Technologies <[email protected]>", "Prasad <[email protected]", "Chainscore Labs <[email protected]>"]
5+
license = "MIT/Apache-2.0"
6+
edition = "2021"
7+
rust-version = "1.75.0"
8+
repository = "https://github.com/chainscore/tsrkit-asm"
9+
description = "Python Bindings for Polkavm-Assembler, a Runtime assembler for PolkaVM"
10+
11+
[lib]
12+
name = "tsrkit_asm"
13+
crate-type = ["cdylib", "rlib"]
14+
15+
[dependencies]
16+
log = "0.4.20"
17+
pyo3 = { version = "0.21", optional = true, features = ["extension-module"] }
18+
19+
[dev-dependencies]
20+
iced-x86 = { version = "1.20.0", features = ["code_asm"] }
21+
22+
[features]
23+
default = ["alloc", "python"]
24+
alloc = []
25+
python = ["pyo3", "alloc"]
26+
27+
[lints.rust]
28+
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(kani)', 'cfg(polkavm_dev_debug_zygote)'] }
29+
30+
[lints.clippy]
31+
# This also triggers on cases like `.or_insert_with(Vec::new)`.
32+
unwrap_or_default = "allow"
33+
get_first = "allow"
34+
manual_range_contains = "allow"
35+
let_unit_value = "allow"
36+
unit_arg = "allow"
37+
type_complexity = "allow"
38+
too_many_arguments = "allow"
39+
needless_late_init = "allow"

0 commit comments

Comments
 (0)