-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (34 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
36 lines (34 loc) · 1.13 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
# Anytype Rust Tools and Clients
#
# SPDX-FileCopyrightText: 2025-2026 Steve Schoettler
# SPDX-License-Identifier: Apache-2.0
#
[workspace]
members = ["anytype-api", "anyr", "anytype-rpc", "any-edit", "anyback"]
resolver = "3"
[workspace.dependencies]
anyhow = "1.0.101"
bytes = "1.11.1"
chrono = { version = "0.4.43", features = ["serde"] }
clap = { version = "4.5.59", features = ["derive", "env"] }
futures = "0.3"
parking_lot = "0.12.5"
prost-types = "0.14.3"
reqwest = { version = "0.12.28", default-features = false, features = ["json", "rustls-tls-native-roots"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde_path_to_error = "0.1.20"
sha2 = "0.10"
snafu = "0.8.9"
strum = { version = "0.27.2", features = ["derive"] }
test-log = { version = "0.2.19", features = ["log", "trace"] }
tokio = { version = "1.49.0", features = ["full"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
crossterm = "0.28"
ratatui = "0.29"
zeroize = { version = "1.8.2", features = ["derive"] }
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"