Skip to content

Commit

Permalink
Reorganize folder structure (#301)
Browse files Browse the repository at this point in the history
* initial work

* Fix formatting

* Fix references to Rust library for guest code
Improve documentation
Other minor fixes

* Fix wastime -> host_wasmtime_rust references
Fixed feature flags

* Fix demo deploy
update readme
improve help text

* Update readme

Co-authored-by: Kyle Brown <kbrown@singlestore.com>
Co-authored-by: Kyle Brown <kyleb@liquidrocketry.com>
  • Loading branch information
3 people authored Aug 24, 2022
1 parent d299a46 commit cc5f620
Show file tree
Hide file tree
Showing 123 changed files with 7,798 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crates/wit-component/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ required-features = ["cli"]
wasmparser = "0.86.0"
wasm-encoder = "0.13.0"
wat = "1.0.44"
wit-parser = { path = "../parser" }
wit-parser = { path = "../wit-parser" }
anyhow = "1.0.55"
indexmap = "1.8.0"
clap = { version = "3.1.0", features = ["derive"], optional = true }
Expand Down
2 changes: 2 additions & 0 deletions crates/wit-parser/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
target
Cargo.lock
22 changes: 22 additions & 0 deletions crates/wit-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[package]
name = "wit-parser"
version = "0.2.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"

[dependencies]
id-arena = "2"
anyhow = "1.0"
pulldown-cmark = { version = "0.8", default-features = false }
wast = { version = "33", default-features = false, optional = true }
unicode-xid = "0.2.2"
unicode-normalization = "0.1.19"

[dev-dependencies]
rayon = "1"
serde_json = "1"
serde = { version = "1", features = ['derive'] }

[[test]]
name = "all"
harness = false
2,251 changes: 2,251 additions & 0 deletions crates/wit-parser/src/abi.rs

Large diffs are not rendered by default.

Loading

0 comments on commit cc5f620

Please sign in to comment.