2021-07-21 15:43:05 +08:00
|
|
|
[package]
|
2023-01-26 15:40:23 +08:00
|
|
|
name = "flowy-notification"
|
2021-07-21 15:43:05 +08:00
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
2024-01-22 13:34:15 +08:00
|
|
|
[lib]
|
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
2021-07-21 15:43:05 +08:00
|
|
|
|
|
|
|
|
[dependencies]
|
2023-01-18 11:22:13 +08:00
|
|
|
lazy_static = { version = "1.4.0" }
|
2023-11-12 21:18:27 +08:00
|
|
|
protobuf.workspace = true
|
|
|
|
|
tracing.workspace = true
|
|
|
|
|
bytes.workspace = true
|
2024-01-22 13:34:15 +08:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
2024-05-02 11:42:33 +08:00
|
|
|
dashmap = "5.5"
|
|
|
|
|
tokio-util = "0.7"
|
|
|
|
|
tokio = { workspace = true, features = ["time"] }
|
2021-07-21 15:43:05 +08:00
|
|
|
|
2023-12-31 07:29:40 +08:00
|
|
|
flowy-derive.workspace = true
|
2023-09-17 17:14:34 +08:00
|
|
|
lib-dispatch = { workspace = true }
|
2021-07-21 15:43:05 +08:00
|
|
|
|
2022-02-08 14:36:59 +08:00
|
|
|
[build-dependencies]
|
2023-12-31 07:29:40 +08:00
|
|
|
flowy-codegen.workspace = true
|
2023-01-01 22:34:38 +08:00
|
|
|
|
|
|
|
|
[features]
|
2023-01-18 11:22:13 +08:00
|
|
|
dart = ["flowy-codegen/dart"]
|
2024-01-30 05:36:27 +08:00
|
|
|
tauri_ts = ["flowy-codegen/ts"]
|
|
|
|
|
web_ts = ["flowy-codegen/ts"]
|