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
|
|
|
|
|
|
|
|
[dependencies]
|
2023-01-18 03:22:13 +00:00
|
|
|
lazy_static = { version = "1.4.0" }
|
|
|
|
protobuf = { version = "2.20.0" }
|
2023-01-26 07:40:23 +00:00
|
|
|
tracing = { version = "0.1", features = ["log"] }
|
2021-08-20 14:00:03 +00:00
|
|
|
bytes = { version = "1.0" }
|
2023-01-26 07:40:23 +00:00
|
|
|
serde = "1.0"
|
2021-07-21 07:43:05 +00:00
|
|
|
|
2023-01-18 03:22:13 +00:00
|
|
|
flowy-derive = { path = "../flowy-derive" }
|
|
|
|
lib-dispatch = { path = "../lib-dispatch" }
|
2021-07-21 07:43:05 +00:00
|
|
|
|
2022-02-08 06:36:59 +00:00
|
|
|
[build-dependencies]
|
2023-01-18 03:22:13 +00:00
|
|
|
flowy-codegen = { path = "../flowy-codegen" }
|
2023-01-01 14:34:38 +00:00
|
|
|
|
|
|
|
[features]
|
2023-01-18 03:22:13 +00:00
|
|
|
dart = ["flowy-codegen/dart"]
|
2023-01-26 07:40:23 +00:00
|
|
|
ts = ["flowy-codegen/ts"]
|