-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 767 Bytes
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 767 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
[workspace]
members = [
"repliq-core",
"repliq-storage",
"repliq-network",
"repliq-cli",
"examples/notes-app",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Repliq Contributors"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yourusername/repliq"
[workspace.dependencies]
# Core dependencies
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
anyhow = "1.0"
uuid = { version = "1.6", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
# Storage
sled = "0.34"
# Networking
tokio = { version = "1.35", features = ["full"] }
tokio-tungstenite = "0.21"
futures = "0.3"
# CLI
clap = { version = "4.4", features = ["derive"] }