-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (71 loc) · 2.15 KB
/
Cargo.toml
File metadata and controls
77 lines (71 loc) · 2.15 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
[workspace]
members = [
"leptos-sync-core",
"leptos-sync-macros",
"leptos-sync-components",
"leptos-sync-examples",
"tests/integration",
"tests/integration_demos",
"examples/devtools_demo",
"examples/custom_crdt_demo",
"examples/advanced_crdt_demo",
"examples/text_editor_demo",
"examples/task_manager_demo",
"examples/document_editor_demo",
"examples/project_manager_demo",
]
resolver = "2"
[workspace.dependencies]
leptos = "0.8.9"
leptos_ws = "0.8.0"
leptos-ws-pro = "0.11.0"
leptos-sync-core = { version = "0.9.0", path = "leptos-sync-core" }
leptos-sync-components = { version = "0.9.0", path = "leptos-sync-components" }
leptos-sync-macros = { version = "0.9.0", path = "leptos-sync-macros" }
web-sys = { version = "0.3", features = ["Window", "Storage", "console"] }
wasm-bindgen = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
uuid = { version = "1.10", features = ["v4", "serde"] }
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
chrono = { version = "0.4.38", features = ["serde"] }
async-trait = "0.1"
wasm-bindgen-futures = "0.4"
js-sys = "0.3"
sqlx = { version = "0.8", features = [
"runtime-tokio-rustls",
"postgres",
"chrono",
] }
redis = { version = "0.26", features = ["tokio-comp"] }
prometheus = "0.13"
axum = "0.7"
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace"] }
# Feature dependencies
aes-gcm = "0.10"
ring = "0.17"
flate2 = "1.0"
lz4 = "1.24"
idb = "0.13"
# Testing dependencies
proptest = "1.5"
wasm-bindgen-test = "0.3.45"
criterion = "0.5.1"
tokio-test = "0.4"
tempfile = "3.0"
[workspace.package]
version = "0.9.0"
edition = "2021"
authors = ["Cloud Shuttle <team@cloud-shuttle.com>"]
description = "Local-first, offline-capable data synchronization for Leptos applications"
license = "MIT OR Apache-2.0"
repository = "https://github.com/cloud-shuttle/leptos-sync"
keywords = ["leptos", "sync", "crdt", "local-first", "offline"]
categories = ["web-programming", "asynchronous", "data-structures"]
[[workspace.metadata.leptos]]
name = "leptos-sync-examples"
path = "leptos-sync-examples"