-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (34 loc) · 988 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
[workspace]
members = [
"crates/*",
"lichen_cli",
"lichen_ipc"
]
default-members = [
"lichen_cli"
]
resolver = "2"
[workspace.dependencies]
bitflags = "2.6.0"
chrono-tz = "0.10.0"
color-eyre = { version = "0.6.3", features = ["issue-url"] }
crossterm = { version = "0.28.1", features = ["serde", "event-stream"] }
env_logger = "0.11.5"
fs-err = { version = "3.0.0", features = ["tokio"] }
human_bytes = "0.4.3"
libc = "0.2.155"
log = "0.4.22"
nix = "0.29"
serde = { version = "1.0.204", features = ["derive"] }
serde_derive = "1.0.204"
serde_json = "1.0.120"
superblock = { git = "https://github.com/serpent-os/blsforme.git"}
thiserror = "2.0.3"
topology = { git = "https://github.com/serpent-os/blsforme.git"}
varlink = { version = "11.0.1" }
varlink_generator = { version = "10.1.0 "}
[workspace.lints.rust]
rust_2018_idioms = { level = "warn", priority = -1 }
semicolon_in_expressions_from_macros = "warn"
unused_import_braces = "warn"
unused_qualifications = "warn"