[package]
edition = "2024"
name = "samod-core"
version = "0.9.0"
authors = ["Alex Good <alex@patternist.xyz>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "the core library for the samod automerge-repo implementation"
readme = false
license = "MIT"
repository = "https://github.com/alexjg/samod"
[lib]
name = "samod_core"
path = "src/lib.rs"
[[test]]
name = "compaction"
path = "tests/compaction.rs"
[[test]]
name = "connection_events"
path = "tests/connection_events.rs"
[[test]]
name = "connectors"
path = "tests/connectors.rs"
[[test]]
name = "create_find_change"
path = "tests/create_find_change.rs"
[[test]]
name = "document_changed"
path = "tests/document_changed.rs"
[[test]]
name = "document_sync_advanced"
path = "tests/document_sync_advanced.rs"
[[test]]
name = "document_sync_basic"
path = "tests/document_sync_basic.rs"
[[test]]
name = "ephemera"
path = "tests/ephemera.rs"
[[test]]
name = "peer_doc_state_changes"
path = "tests/peer_doc_state_changes.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[test]]
name = "stop"
path = "tests/stop.rs"
[[test]]
name = "storage_id"
path = "tests/storage_id.rs"
[[test]]
name = "wait_for_dialer"
path = "tests/wait_for_dialer.rs"
[dependencies.automerge]
version = "0.8.0"
[dependencies.base64]
version = "0.21"
[dependencies.bs58]
version = "0.5.1"
features = ["check"]
[dependencies.hex]
version = "0.4"
[dependencies.minicbor]
version = "1.0.0"
features = ["std"]
[dependencies.rand]
version = "0.9"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.sha2]
version = "0.10.9"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.tracing]
version = "0.1.41"
[dependencies.url]
version = "2.5"
[dependencies.uuid]
version = "1.0"
features = [
"v4",
"serde",
]
[dev-dependencies.tokio]
version = "1.0"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.tracing-subscriber]
version = "0.3.19"
features = ["env-filter"]