-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (54 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
59 lines (54 loc) · 1.39 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
[workspace]
members = ["crates/jj-diff", "crates/jayjay-core", "crates/jayjay-uniffi", "crates/jayjay-cli"]
resolver = "2"
[workspace.package]
edition = "2024"
rust-version = "1.88"
license = "Apache-2.0"
[workspace.dependencies]
jj-lib = "0.40"
gix = { version = "0.81", default-features = false }
uniffi = "0.31"
clap = { version = "4", features = ["derive"] }
thiserror = "2"
pollster = "0.4"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
tempfile = "3"
futures = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
similar = "3"
tree-sitter = "0.26.8"
tree-sitter-highlight = "0.26.8"
tree-sitter-rust = "0.24.2"
tree-sitter-javascript = "0.25"
tree-sitter-typescript = "0.23"
tree-sitter-python = "0.25.0"
tree-sitter-json = "0.24.8"
tree-sitter-toml-ng = "0.7"
tree-sitter-css = "0.25.0"
tree-sitter-html = "0.23"
tree-sitter-go = "0.25.0"
tree-sitter-c = "0.24.1"
tree-sitter-cpp = "0.23"
tree-sitter-bash = "0.25.1"
tree-sitter-ruby = "0.23"
tree-sitter-java = "0.23"
tree-sitter-yaml = "0.7"
tree-sitter-md = "0.5"
tree-sitter-swift = "0.7"
tree-sitter-solidity = "1.2"
tree-sitter-sequel = "0.3"
tree-sitter-xml = "0.7"
tree-sitter-zig = "1.1"
tree-sitter-nix = "0.3"
tree-sitter-make = "1.1"
[profile.dev]
debug = "line-tables-only"
incremental = true
codegen-units = 256
lto = false
[profile.release]
lto = "fat"
codegen-units = 1
strip = "debuginfo"