panorama/core/Cargo.toml

21 lines
332 B
TOML
Raw Permalink Normal View History

2024-11-04 22:54:32 +00:00
[package]
name = "panorama-core"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-11-04 23:26:13 +00:00
entity = { path = "entity" }
migration = { path = "migration" }
2024-11-04 22:54:32 +00:00
prost = "0.13.3"
2024-11-04 23:26:13 +00:00
tonic = "0.12.3"
2024-11-04 22:54:32 +00:00
sea-orm = { version = "1.1.1", features = [
"sqlx-sqlite",
"runtime-tokio-rustls",
"macros",
] }
[build-dependencies]
tonic-build = "0.12.3"