Skip to content

Commit 970932c

Browse files
committed
ref: move shared to core as lib
1 parent 0c21e7b commit 970932c

23 files changed

+188
-46
lines changed

Cargo.lock

Lines changed: 139 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 45 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,50 @@
1+
[package]
2+
name = "xcodebase"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[dependencies]
7+
# Error Handling
8+
anyhow = "^1.0.42"
9+
10+
# Serialization
11+
serde = { version = "1.0", features = ["derive"]}
12+
serde_json = "1.0.79"
13+
serde_yaml = "0.8.23"
14+
15+
# Get processes, processors, disks, components and networks
16+
# sysinfo = "0.23.5"
17+
libproc = "0.10.0"
18+
19+
# Mainly for running async code and managing UnixListener
20+
tokio = { version = "1.17.0", features = ["full"] }
21+
# Shorthand async
22+
async-trait = "0.1.52"
23+
24+
# Async tracing
25+
tracing = "0.1.32"
26+
tracing-subscriber = { version = "0.3.9", features = ["env-filter"]}
27+
tracing-appender = "0.2.1"
28+
29+
notify = "5.0.0-pre.13"
30+
dirs = "4.0"
31+
wax = "0.4.0"
32+
regex = "1.5"
33+
lazy_static = "1.4.0"
34+
shell-words = "1.1.0"
35+
36+
# WARN: api totally changed on later versions.
37+
# It would make sense to create custom function
38+
# Breaks
39+
# gitignore = "1.0.7"
40+
41+
[lib]
42+
name = "xcodebase"
43+
path = "core/lib.rs"
44+
145
[workspace]
246
members = [
3-
"shared",
447
"daemon",
548
"lsp",
6-
"nvim"
49+
"nvim",
750
]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)