-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (38 loc) · 800 Bytes
/
Cargo.toml
File metadata and controls
44 lines (38 loc) · 800 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
41
42
43
44
[workspace]
resolver = "2"
members = [
"crates/wasi",
"crates/v86",
"crates/v86-lib",
"crates/tuntap",
]
default-members = ["crates/wasi"]
[workspace.dependencies]
v86-wasi = {path = "crates/wasi", version = "0.0.3"}
tuntap = {path = "crates/tuntap", version = "0.0.3"}
json = "0.12"
mio = "0.8.11"
tokio = "1"
futures = "0.3"
futures-util = "0.3"
crossbeam-channel = "0.5.6"
anyhow = "1.0.70"
lazy_static = "1.4.0"
libc = "0.2.155"
rand = "0.8"
chrono = "0.4"
thiserror = "1.0.63"
[workspace.package]
version = "0.0.3"
authors = ["Join.Gong<joinhack@gmail.com>", "Derek Anderson<derek@txlabs.org>"]
edition = "2021"
[profile.dev]
#lto = false
#opt-level = 2
panic = "abort"
overflow-checks = false
[profile.release]
lto = true
opt-level = 3
incremental = false
panic = "abort"