-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 969 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (34 loc) · 969 Bytes
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
[workspace]
resolver = "2"
members = [
"crates/strand-azdo",
"crates/strand-azdo-protocol",
"crates/strand-core",
"crates/strand-tauri",
]
[workspace.package]
version = "1.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
authors = ["Daniel Schwarz"]
repository = "https://github.com/danielss/strand"
[workspace.dependencies]
# Git engines
gix = { version = "0.66", default-features = false, features = ["max-performance-safe", "blocking-network-client"] }
git2 = { version = "0.19", default-features = false }
# Filesystem watching (working-tree auto-refresh)
notify = "6"
# Serialization / errors / async
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
anyhow = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "fs"] }
tracing = "0.1"
url = "2"
uuid = { version = "1", features = ["v4", "serde"] }
[profile.release]
codegen-units = 1
lto = "thin"
strip = "symbols"
panic = "abort"