2021-07-21 07:43:05 +00:00
|
|
|
[package]
|
2023-01-26 07:40:23 +00:00
|
|
|
name = "flowy-notification"
|
2021-07-21 07:43:05 +00: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 05:34:15 +00:00
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
2021-07-21 07:43:05 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-01-18 03:22:13 +00:00
|
|
|
lazy_static = { version = "1.4.0" }
|
2023-11-12 13:18:27 +00:00
|
|
|
protobuf.workspace = true
|
|
|
|
tracing.workspace = true
|
|
|
|
bytes.workspace = true
|
2024-01-22 05:34:15 +00:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
2024-08-11 12:39:25 +00:00
|
|
|
dashmap.workspace = true
|
2024-05-02 03:42:33 +00:00
|
|
|
tokio-util = "0.7"
|
|
|
|
tokio = { workspace = true, features = ["time"] }
|
2021-07-21 07:43:05 +00:00
|
|
|
|
2023-12-30 23:29:40 +00:00
|
|
|
flowy-derive.workspace = true
|
2023-09-17 09:14:34 +00:00
|
|
|
lib-dispatch = { workspace = true }
|
2021-07-21 07:43:05 +00:00
|
|
|
|
2022-02-08 06:36:59 +00:00
|
|
|
[build-dependencies]
|
2023-12-30 23:29:40 +00:00
|
|
|
flowy-codegen.workspace = true
|
2023-01-01 14:34:38 +00:00
|
|
|
|
|
|
|
[features]
|
2023-01-18 03:22:13 +00:00
|
|
|
dart = ["flowy-codegen/dart"]
|
2024-01-29 21:36:27 +00:00
|
|
|
tauri_ts = ["flowy-codegen/ts"]
|
|
|
|
web_ts = ["flowy-codegen/ts"]
|