2025-11-15 23:42:12 +00:00
|
|
|
[package]
|
2025-12-13 22:22:05 +00:00
|
|
|
name = "libmarathon"
|
2025-11-15 23:42:12 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
anyhow.workspace = true
|
2025-12-14 22:50:35 +00:00
|
|
|
arboard = "3.4"
|
2025-11-16 11:50:16 +00:00
|
|
|
bevy.workspace = true
|
2025-12-17 19:20:34 +00:00
|
|
|
rkyv.workspace = true
|
2025-12-12 20:18:41 +00:00
|
|
|
blake3 = "1.5"
|
2025-12-11 18:39:57 +00:00
|
|
|
blocking = "1.6"
|
2025-12-14 22:50:35 +00:00
|
|
|
bytemuck = { version = "1.14", features = ["derive"] }
|
|
|
|
|
bytes = "1.0"
|
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
|
crdts.workspace = true
|
2025-12-13 22:50:13 +00:00
|
|
|
crossbeam-channel = "0.5"
|
2025-12-14 22:50:35 +00:00
|
|
|
dirs = "5.0"
|
2025-12-14 20:25:55 +00:00
|
|
|
egui = { version = "0.33", default-features = false, features = ["bytemuck", "default_fonts"] }
|
|
|
|
|
encase = { version = "0.10", features = ["glam"] }
|
2025-12-14 22:50:35 +00:00
|
|
|
futures-lite = "2.0"
|
|
|
|
|
glam = "0.29"
|
2025-12-17 19:20:34 +00:00
|
|
|
inventory.workspace = true
|
2025-12-14 22:50:35 +00:00
|
|
|
iroh = { workspace = true, features = ["discovery-local-network"] }
|
|
|
|
|
iroh-gossip.workspace = true
|
2025-12-14 20:25:55 +00:00
|
|
|
itertools = "0.14"
|
2025-12-14 22:50:35 +00:00
|
|
|
rand = "0.8"
|
|
|
|
|
raw-window-handle = "0.6"
|
|
|
|
|
rusqlite = { version = "0.37.0", features = ["bundled"] }
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
|
sha2 = "0.10"
|
|
|
|
|
sync-macros = { path = "../sync-macros" }
|
|
|
|
|
thiserror = "2.0"
|
|
|
|
|
tokio.workspace = true
|
|
|
|
|
toml.workspace = true
|
|
|
|
|
tracing.workspace = true
|
|
|
|
|
uuid = { version = "1.0", features = ["v4", "serde"] }
|
|
|
|
|
wgpu-types = "26.0"
|
|
|
|
|
winit = "0.30"
|
2025-11-15 23:42:12 +00:00
|
|
|
|
2025-12-17 19:20:34 +00:00
|
|
|
[target.'cfg(target_os = "ios")'.dependencies]
|
|
|
|
|
tracing-oslog = "0.3"
|
|
|
|
|
|
2025-11-15 23:42:12 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
|
tokio.workspace = true
|
2025-12-09 22:21:58 +00:00
|
|
|
iroh = { workspace = true, features = ["discovery-local-network"] }
|
2025-11-15 23:42:12 +00:00
|
|
|
iroh-gossip.workspace = true
|
|
|
|
|
futures-lite = "2.0"
|
2025-12-09 22:21:58 +00:00
|
|
|
tempfile = "3"
|
2025-12-11 18:39:57 +00:00
|
|
|
proptest = "1.4"
|
|
|
|
|
criterion = "0.5"
|
|
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
|
name = "write_buffer"
|
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
|
name = "vector_clock"
|
|
|
|
|
harness = false
|