-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnimwasmtime.cfg
More file actions
executable file
·40 lines (33 loc) · 867 Bytes
/
nimwasmtime.cfg
File metadata and controls
executable file
·40 lines (33 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[n.global]
output = "src/wasmtime"
[n.include]
$output/target
$output/crates/c-api
[n.prepare]
gitremote.ts = "https://github.com/bytecodealliance/wasmtime"
gitbranch.ts = "release-29.0.0"
gitsparse.ts = """
crates
cranelift
src
Cargo.toml
Cargo.lock
build.rs
"""
[n.post]
[src/wasmtime/Cargo.toml]
noprocess = true
regex.1 = """\[\[(test|bench|example)\]\](\n\w.*)*"""
replace.1 = ""
[src/wasmtime/pulley/Cargo.toml]
noprocess = true
regex.1 = """\[\[(test|bench|example)\]\](\n\w.*)*"""
replace.1 = ""
[src/wasmtime/crates/environ/src/fact/trampoline.rs]
noprocess = true
search.1 = """ ) -> Destination {"""
replace.1 = " ) -> Destination<'_> {"
[src/wasmtime/crates/environ/src/compile/mod.rs]
noprocess = true
search.1 = """ fn get(&self, key: &[u8]) -> Option<Cow<[u8]>>;"""
replace.1 = " fn get(&self, key: &[u8]) -> Option<Cow<'_, [u8]>>;"