2023-10-02 07:12:24 +00:00
|
|
|
[package]
|
|
|
|
name = "flowy-date"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# 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"]
|
2023-10-02 07:12:24 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
lib-dispatch = { path = "../lib-dispatch" }
|
|
|
|
flowy-error = { path = "../flowy-error" }
|
2023-12-30 23:29:40 +00:00
|
|
|
flowy-derive.workspace = true
|
2023-11-12 13:18:27 +00:00
|
|
|
protobuf.workspace = true
|
|
|
|
bytes.workspace = true
|
2023-10-02 07:12:24 +00:00
|
|
|
strum_macros = "0.21"
|
2023-11-12 13:18:27 +00:00
|
|
|
tracing.workspace = true
|
2023-10-02 07:12:24 +00:00
|
|
|
date_time_parser = { version = "0.2.0" }
|
2023-11-12 13:18:27 +00:00
|
|
|
chrono.workspace = true
|
2023-10-02 07:12:24 +00:00
|
|
|
fancy-regex = { version = "0.11.0" }
|
|
|
|
|
2024-04-12 08:21:41 +00:00
|
|
|
[build-dependencies]
|
|
|
|
flowy-codegen.workspace = true
|
|
|
|
|
2023-10-02 07:12:24 +00:00
|
|
|
[features]
|
|
|
|
dart = ["flowy-codegen/dart"]
|
2024-01-29 21:36:27 +00:00
|
|
|
tauri_ts = ["flowy-codegen/ts"]
|