-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
77 lines (62 loc) · 2.33 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[package]
name = "xbase"
version = "0.3.0"
edition = "2021"
default-run = "xbase"
[dependencies]
# Logging
tracing = { version = "0.1.32" }
tracing-attributes = { version = "0.1.22" }
tracing-appender = { version = "0.2.1" }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
# Error Handling
anyhow = { version = "^1.0.70" }
thiserror = { version = "1.0.31" }
# Serialization Feature
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0.96" }
serde_repr = { version = "0.1.8" }
strum = { version = "0.24.0", features = ["derive"] }
# Async Runtime Feature
tokio = { version = "1.26.0", features = ["full"] }
tokio-util = { version = "0.7.7", features = ["codec"] }
tokio-serde = { version = "0.8.0", features = ["json"] }
futures = { version = "0.3.28" }
async-trait = { version = "0.1.52" }
async-stream = { version = "0.3.3" }
parity-tokio-ipc = { version = "0.9.0" }
process-stream = { version = "0.4.*", features = ["serde"] }
once_cell = { version = "1.13.0" }
# Filesystem watcher
notify = { version = "5.0.0-pre.13" }
dirs = { version = "4.0" }
wax = { version = "0.5.0" }
# Other
tap = { version = "1.0.1" }
xclog = { version = "0.3.*", features = ["with_tracing"] }
simctl = { git = "https://github.com/xbase-lab/simctl" }
derive-deref-rs = { version = "0.1.1"}
shell-words = { version = "1.1.0" }
xcodeproj = { version = "0.3.*" }
# Unix Api
libc = { version = "0.2.126" }
libproc = { version = "0.13.0" }
paste = { version = "1.0.7" }
which = { version = "4.2.5" }
os_pipe = { version = "1.0.1" }
signal-hook = { version = "0.3.14" }
signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"] }
# types generators
typescript-type-def = { version = "0.5.5", features = ["json_value"] }
[workspace]
members = [ "crates/*" ]
[features]
default = []
gen = []
[dev-dependencies]
tracing-test = "0.2.3"
[profile.dev]
debug = 0
[profile.release]
incremental = true
debug = 0