2025-05-23 08:50:31 +09:00
|
|
|
[workspace]
|
2025-06-11 08:38:03 +09:00
|
|
|
members = [ "lazy-supplements-*" ]
|
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"
|
|
|
|
repository = "https://forgejo.fireturlte.net"
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
2025-06-11 08:38:03 +09:00
|
|
|
lazy-supplements-core.path = "lazy-supplements-core"
|
2025-06-04 07:13:37 +09:00
|
|
|
libp2p = { version = "0.55.0", features = ["macros", "mdns", "noise", "ping", "tcp", "tokio", "yamux" ] }
|
2025-06-11 08:38:03 +09:00
|
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
|
|
thiserror = "2.0.12"
|
|
|
|
tokio = { version = "1.45.0", features = ["macros", "rt", "rt-multi-thread"] }
|
2025-05-25 17:19:37 +09:00
|
|
|
|
|
|
|
[workspace.dependencies.sea-orm-migration]
|
|
|
|
version = "1.1.0"
|
|
|
|
features = [
|
|
|
|
# Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI.
|
|
|
|
# View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime.
|
|
|
|
# e.g.
|
|
|
|
"runtime-tokio-rustls", # `ASYNC_RUNTIME` feature
|
|
|
|
"sqlx-postgres", # `DATABASE_DRIVER` feature
|
|
|
|
]
|