-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
108 lines (90 loc) · 2.13 KB
/
Cargo.toml
File metadata and controls
108 lines (90 loc) · 2.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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[workspace]
resolver = "2"
members = [
"crates/claw-core",
"crates/claw-store",
"crates/claw-patch",
"crates/claw-merge",
"crates/claw-crypto",
"crates/claw-policy",
"crates/claw-sync",
"crates/claw-git",
"crates/claw",
"tests/integration",
]
[workspace.package]
edition = "2021"
version = "0.1.0"
license = "MIT"
authors = ["Claw contributors"]
description = "Intent-native, agent-native version control."
homepage = "https://github.com/shree-git/claw"
repository = "https://github.com/shree-git/claw"
[workspace.dependencies]
# Hashing & encoding
blake3 = "1.8"
data-encoding = "2.9"
crc32fast = "1.5"
hex = "0.4"
# Compression
zstd = "0.13"
flate2 = "1.1"
# Crypto
ed25519-dalek = { version = "2.2", features = ["rand_core"] }
chacha20poly1305 = "0.10"
rand = "0.8"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
prost = "0.13"
prost-types = "0.13"
prost-build = "0.13"
protoc-bin-vendored = "3.2"
# gRPC
tonic = "0.12"
tonic-build = "0.12"
# Async
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
async-trait = "0.1"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
# Storage
redb = "2.4"
tempfile = "3.15"
# IDs
ulid = { version = "1.2", features = ["serde"] }
# CLI
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
dirs = "5.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Errors
thiserror = "2.0"
# Bytes
bytes = "1.9"
base64 = "0.22"
sha2 = "0.10"
urlencoding = "2.1"
webbrowser = "1.0"
# Diffing
similar = "2.6"
# Glob matching
globset = "0.4"
# Testing
proptest = "1.6"
# Internal crates
claw-core = { path = "crates/claw-core" }
claw-store = { path = "crates/claw-store" }
claw-patch = { path = "crates/claw-patch" }
claw-merge = { path = "crates/claw-merge" }
claw-crypto = { path = "crates/claw-crypto" }
claw-policy = { path = "crates/claw-policy" }
claw-sync = { path = "crates/claw-sync" }
claw-git = { path = "crates/claw-git" }
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"