This repository was archived by the owner on Apr 30, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
100 lines (91 loc) · 2.79 KB
/
Copy pathCargo.toml
File metadata and controls
100 lines (91 loc) · 2.79 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[workspace]
resolver = "3"
members = [
"darn_cli",
"darn_core"
]
[workspace.package]
authors = ["Brooklyn Zelenka <hello@brooklynzelenka.com>"]
categories = ["command-line-utilities", "filesystem"]
edition = "2024"
keywords = ["automerge", "crdt", "filesystem", "local-first", "p2p"]
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/inkandswitch/darn"
rust-version = "1.90"
[workspace.dependencies]
# Local crates
darn_core = { version = "0.6.0", path = "darn_core", default-features = false }
assert_cmd = "2.0"
automerge = "0.7.3"
blake3 = "1.8"
bolero = "0.11"
color-eyre = "0.6"
eyre = "0.6"
bs58 = { version = "0.5", features = ["check"] }
clap = { version = "4.0", features = ["derive"] }
cliclack = "0.4"
console = "0.16"
dirs = "6.0"
future_form = "0.3"
futures = "0.3"
getrandom = "0.2"
globset = "0.4"
hex = "0.4"
ignore = "0.4"
iroh = "0.96"
minicbor = { version = "2.1", default-features = false, features = ["alloc", "derive", "std"] }
notify-debouncer-mini = "0.7"
sedimentree_core = { version = "0.8.0", features = ["std"] }
sedimentree_fs_storage = "0.7.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
subduction_core = { version = "0.10.0", features = ["system_time", "test_utils"] }
subduction_crypto = { version = "0.4.0", features = ["std"] }
subduction_iroh = "0.5.2"
subduction_websocket = { version = "0.8.2", features = ["tokio_client_any"] }
predicates = "3.1"
tempfile = "3.16"
testresult = "0.4.1"
thiserror = "2.0"
tokio = { version = "1.0", features = ["full"] }
tokio-util = "0.7"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tungstenite = { version = "0.27", default-features = false, features = ["handshake", "http"] }
walkdir = "2.5"
[workspace.lints.rust]
future_incompatible = { level = "warn", priority = -1 }
let_underscore = { level = "warn", priority = -1 }
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
missing_docs = "warn"
nonstandard_style = { level = "warn", priority = -1 }
rust_2021_compatibility = { level = "warn", priority = -1 }
rust_2018_idioms = { level = "deny", priority = -1 }
unreachable_pub = "deny"
unused_extern_crates = "deny"
unsafe_code = "deny"
[workspace.lints.clippy]
dbg_macro = "warn"
expect_used = "warn"
fallible_impl_from = "warn"
fn_params_excessive_bools = "warn"
indexing_slicing = "warn"
missing_const_for_fn = "warn"
must_use_candidate = "warn"
panic = "warn"
todo = "warn"
unneeded_field_pattern = "warn"
unwrap_used = "warn"
wildcard_enum_match_arm = "warn"
all = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
multiple_crate_versions = "allow" # various transitive deps
pedantic = { level = "deny", priority = -1 }
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = 3
panic = "abort"
strip = "symbols"