-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
41 lines (33 loc) · 938 Bytes
/
Cargo.toml
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
41
[package]
authors = ["Willem Wyndham <[email protected]>"]
description = "Tools for generating to and from wit format"
edition = "2021"
keywords = ["WebAssembly", "Wasm", "wit", "WasmInterfaceTypes"]
license = "MIT"
name = "witme"
repository = "https://github.com/ahalabs/witme"
version = "0.3.1"
[dependencies]
## local
near-sdk-witgen = {path = "./crates/near-sdk", version = "0.0.2"}
wit-bindgen-gen-ts-near = {path = "crates/gen-ts-near", version = "0.3.0"}
## wasm/wit related
cargo-witgen = "0.13.0"
walrus = "0.19.0"
## Errors
anyhow = "1.0.51"
## CLI
clap = {version = "=3.1.8", features = ["derive", "cargo"]}
[dev-dependencies]
assert_cmd = "2.0.4"
assert_fs = "1.0.7"
predicates = {version = "2.1.1", features = ["regex"]}
wit-parser = {version = '0.0.2', package = "aha-wit-parser"}
[workspace]
members = ["examples/*", "crates/*"]
[lib]
name = "witme"
path = "src/lib.rs"
[[bin]]
name = "witme"
path = "src/main.rs"