-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (52 loc) · 1.59 KB
/
Cargo.toml
File metadata and controls
57 lines (52 loc) · 1.59 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
[workspace]
members = ["backend-tauri"]
default-members = ["."]
[workspace.package]
version = "0.6.1" # Also update package.json and tauri.conf.json
rust-version = "1.85" # Also update test.yml
edition = "2024"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/ilyagr/diffedit3"
[package]
name = "diffedit3"
description = "Edit diffs in a 3-pane view"
license = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
version = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
include = ["/src", "/webapp/dist", "/*.md"]
[package.metadata.binstall]
# `cargo binstall` gets confused by the `v` before versions in archive name.
pkg-url = "{ repo }/releases/download/v{ version }/diffedit3-v{ version }-{ target }.{ archive-format }"
[dependencies]
clap = { version = "4.5.48", features = ["derive"] }
indexmap = { version = "2.11.4", features = ["serde"] }
open = "5.3.2"
parking_lot = "0.12.5"
poem = { version = "3.1.12", features = ["embed"] }
rust-embed = { version = "8.7.2" , features = ["include-exclude"] }
serde = { version = "1.0.228", features = ["serde_derive"] }
thiserror = "2.0.17"
tokio = { version = "1.47.1", features = [
"macros",
"rt-multi-thread",
"signal",
] }
toml = { version = "0.9.6" }
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
walkdir = "2.5.0"
[dev-dependencies]
assert_matches = "1.5.0"
indoc = "2.0.6"
insta = { version = "1.43.2", features = [
"redactions",
"serde",
"yaml",
"json",
] }
itertools = "0.14"
tempfile = "3.23.0"
txtar = "1.0.0"