-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (33 loc) · 849 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
[package]
name = "nowasm"
version = "0.0.2"
edition = "2021"
categories = ["no-std"]
authors = ["Takeru Ohta <phjgt308@gmail.com>"]
license = "MIT"
description = "No-std, no-unsafe and no-dependencies WebAssembly 1.0 runtime library"
homepage = "https://github.com/sile/nowasm"
repository = "https://github.com/sile/nowasm"
readme = "README.md"
[features]
default = ["std", "sign_extension"]
sign_extension = []
std = []
[[example]]
name = "add"
path = "examples/wasm/add.rs"
crate-type = ["cdylib"]
[[example]]
name = "fib"
path = "examples/wasm/fib.rs"
crate-type = ["cdylib"]
[[example]]
name = "hello"
path = "examples/wasm/hello.rs"
crate-type = ["cdylib"]
[dependencies]
[dev-dependencies]
clap = { version = "4.5.7", features = ["derive"] }
orfail = "1.1.0"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"