caretta-sync/Cargo.toml

25 lines
1 KiB
TOML
Raw Normal View History

2025-05-23 08:50:31 +09:00
[workspace]
2025-08-05 08:17:35 +09:00
members = [ "core", "desktop", "macros", "mobile", "examples/*" ]
2025-06-12 07:16:02 +09:00
resolver = "3"
2025-05-23 08:50:31 +09:00
[workspace.package]
edition = "2024"
version = "0.1.0"
description = "A local-first application framework for lazy person"
license = "MIT OR Apache-2.0"
2025-06-12 07:16:02 +09:00
repository = "https://forgejo.fireturlte.net/lazy-supplements"
2025-05-23 08:50:31 +09:00
[workspace.dependencies]
chrono = "0.4.41"
2025-06-17 07:20:24 +09:00
ciborium = "0.2.2"
2025-06-18 08:36:01 +09:00
clap = { version = "4.5.38", features = ["derive"] }
2025-06-13 22:32:16 +09:00
dioxus = { version = "0.6.0", features = [] }
2025-08-05 08:17:35 +09:00
caretta-core.path = "core"
2025-06-04 07:13:37 +09:00
libp2p = { version = "0.55.0", features = ["macros", "mdns", "noise", "ping", "tcp", "tokio", "yamux" ] }
sea-orm = { version = "1.1.11", features = ["sqlx-sqlite", "runtime-tokio-native-tls", "macros", "with-chrono", "with-uuid"] }
2025-06-12 07:16:02 +09:00
sea-orm-migration = { version = "1.1.0", features = ["runtime-tokio-rustls", "sqlx-postgres"] }
serde = { version = "1.0.219", features = ["derive"] }
thiserror = "2.0.12"
2025-06-13 22:32:16 +09:00
tokio = { version = "1.45.0", features = ["macros", "rt", "rt-multi-thread"] }
2025-06-17 07:20:24 +09:00
uuid = { version = "1.17.0", features = ["v7"] }