50 lines
1.1 KiB
TOML
50 lines
1.1 KiB
TOML
[package]
|
|
name = "libmarathon"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
rusqlite = { version = "0.37.0", features = ["bundled"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
thiserror = "2.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json.workspace = true
|
|
crdts.workspace = true
|
|
anyhow.workspace = true
|
|
sync-macros = { path = "../sync-macros" }
|
|
uuid = { version = "1.0", features = ["v4", "serde"] }
|
|
toml.workspace = true
|
|
tracing.workspace = true
|
|
bevy.workspace = true
|
|
glam = "0.29"
|
|
winit = "0.30"
|
|
raw-window-handle = "0.6"
|
|
bincode = "1.3"
|
|
bytes = "1.0"
|
|
futures-lite = "2.0"
|
|
sha2 = "0.10"
|
|
blake3 = "1.5"
|
|
rand = "0.8"
|
|
tokio.workspace = true
|
|
blocking = "1.6"
|
|
crossbeam-channel = "0.5"
|
|
iroh = { workspace = true, features = ["discovery-local-network"] }
|
|
iroh-gossip.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tokio.workspace = true
|
|
iroh = { workspace = true, features = ["discovery-local-network"] }
|
|
iroh-gossip.workspace = true
|
|
futures-lite = "2.0"
|
|
tempfile = "3"
|
|
proptest = "1.4"
|
|
criterion = "0.5"
|
|
|
|
[[bench]]
|
|
name = "write_buffer"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "vector_clock"
|
|
harness = false
|