-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (60 loc) · 1.68 KB
/
Copy pathCargo.toml
File metadata and controls
62 lines (60 loc) · 1.68 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
[workspace]
resolver = "2"
members = [
"crates/libgrite-core",
"crates/libgrite-git",
"crates/libgrite-ipc",
"crates/libgrite-cli",
"crates/grite",
"crates/grite-daemon",
"crates/grite-bench",
]
[workspace.package]
version = "0.5.3"
edition = "2021"
license = "MIT"
rust-version = "1.75"
repository = "https://github.com/neul-labs/grite"
homepage = "https://github.com/neul-labs/grite"
documentation = "https://docs.neullabs.com/grite"
readme = "README.md"
keywords = ["git", "issue-tracker", "crdt", "agents", "distributed"]
categories = ["command-line-utilities", "development-tools"]
authors = ["Dipankar Sarkar <dipankar@neullabs.com>"]
[workspace.dependencies]
blake2 = "0.10"
ciborium = "0.2"
sled = "0.34"
git2 = { version = "0.20", features = ["vendored-libgit2", "vendored-openssl"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
clap = { version = "4.4", features = ["derive"] }
thiserror = "1.0"
hex = "0.4"
rand = "0.8"
chrono = { version = "0.4", features = ["serde"] }
rkyv = "0.8"
uuid = { version = "1.0", features = ["v4"] }
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
sha2 = "0.10"
ed25519-dalek = { version = "2.1", features = ["rand_core"] }
fs2 = "0.4"
regex = "1"
glob = "0.3"
tree-sitter = "0.24"
tree-sitter-language = "0.1"
streaming-iterator = "0.1"
tree-sitter-rust = "0.23"
tree-sitter-python = "0.23"
tree-sitter-typescript = "0.23"
tree-sitter-javascript = "0.23"
tree-sitter-go = "0.23"
tree-sitter-java = "0.23"
tree-sitter-c = "0.23"
tree-sitter-cpp = "0.23"
tree-sitter-ruby = "0.23"
tree-sitter-elixir = "0.3"
comfy-table = "7"