update layout for the rest

This commit is contained in:
NikVolf
2018-03-12 15:30:38 +03:00
parent f326e46f5c
commit fc5f5adf2a
13 changed files with 4 additions and 45 deletions

View File

@@ -3,7 +3,4 @@ language:
script:
- cargo build --release --verbose
- cargo build --manifest-path prune/Cargo.toml
- cargo build --manifest-path gas/Cargo.toml
- cargo build --manifest-path ext/Cargo.toml
- cargo test --verbose

View File

@@ -21,15 +21,15 @@ diff = "0.1.11"
[[bin]]
name = "wasm-prune"
path = "prune/src/main.rs"
path = "prune/main.rs"
[[bin]]
name = "wasm-ext"
path = "ext/src/main.rs"
path = "ext/main.rs"
[[bin]]
name = "wasm-gas"
path = "gas/src/main.rs"
path = "gas/main.rs"
[[bin]]
name = "wasm-build"
@@ -37,4 +37,4 @@ path = "build/main.rs"
[[bin]]
name = "wasm-stack-height"
path = "stack_height/src/main.rs"
path = "stack_height/main.rs"

2
ext/.gitignore vendored
View File

@@ -1,2 +0,0 @@
target
Cargo.lock

View File

@@ -1,8 +0,0 @@
[package]
name = "wasm-ext"
version = "0.1.0"
authors = ["NikVolf <nikvolf@gmail.com>"]
[dependencies]
parity-wasm = "0.27"
wasm-utils = { path = "../" }

2
gas/.gitignore vendored
View File

@@ -1,2 +0,0 @@
target
Cargo.lock

View File

@@ -1,8 +0,0 @@
[package]
name = "wasm-gas"
version = "0.1.0"
authors = ["NikVolf <nikvolf@gmail.com>"]
[dependencies]
parity-wasm = "0.27"
wasm-utils = { path = "../" }

2
prune/.gitignore vendored
View File

@@ -1,2 +0,0 @@
target
Cargo.lock

View File

@@ -1,9 +0,0 @@
[package]
name = "wasm-prune"
version = "0.1.0"
authors = ["NikVolf <nikvolf@gmail.com>"]
[dependencies]
parity-wasm = "0.27"
wasm-utils = { path = "../" }
clap = "2.24"

View File

@@ -1,7 +0,0 @@
[package]
name = "stack_height"
version = "0.1.0"
authors = ["Sergey Pepyakin <s.pepyakin@gmail.com>"]
[dependencies]
wasm-utils = { path = "../" }