-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (53 loc) · 1.74 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (53 loc) · 1.74 KB
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
#:schema https://json.schemastore.org/cargo.json
[workspace]
members = ["crates/key_agent", "crates/core", "crates/cli", "crates/nix_client"]
resolver = "2"
package.edition = "2024"
package.version = "1.5.0-dev"
[workspace.metadata.crane]
name = "wire"
[workspace.lints.clippy]
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
missing_const_for_fn = "deny"
disallowed_types = "warn"
# annoying to deal with
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[workspace.dependencies]
itertools = "0.15.0"
futures-util = { version = "0.3.31", features = ["sink", "std"] }
clap = { version = "4.5.51", features = ["derive", "string", "cargo"] }
clap-verbosity-flag = "3.0.4"
serde = { version = "1.0.228", features = ["derive", "rc"] }
tokio = { version = "1.48.0", features = ["full"] }
tracing = { version = "0.1.41", features = ["release_max_level_debug"] }
tracing-log = "0.2.0"
tracing-subscriber = "0.3.20"
im = { version = "15.1.0", features = ["serde"] }
anyhow = "1.0.100"
prost = "0.14.1"
nix = { version = "0.31.0", features = ["user", "poll", "term", "fs"] }
miette = { version = "7.6.0", features = ["fancy"] }
thiserror = "2.0.17"
sha2 = "0.11.0"
tokio-util = { version = "0.7.17", features = ["codec"] }
base64 = "0.23.0"
nix-compat = { git = "https://git.snix.dev/snix/snix.git", features = [
"serde",
"flakeref",
"daemon",
] }
# simd-json = { version = "0.17.0", features = [
# "serde_impl",
# # swar-number-parsing is disabled because nix never outputs
# # floats.
# # "swar-number-parsing",
# "runtime-detection",
# "hints",
# ] }
serde_json = { version = "1.0.145" }
owo-colors = { version = "4.2.3", features = ["supports-colors"] }
konst = "0.4.3"
[profile.dev.package.sqlx-macros]
opt-level = 3