2021-06-28 14:56:15 +00:00
|
|
|
[package]
|
|
|
|
name = "dart-ffi"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
|
|
name = "dart_ffi"
|
|
|
|
# this value will change depending on the target os
|
2023-12-25 18:03:42 +00:00
|
|
|
# default static library
|
2022-04-08 23:35:35 +00:00
|
|
|
crate-type = ["staticlib"]
|
2021-06-28 14:56:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2022-09-18 01:30:59 +00:00
|
|
|
allo-isolate = { version = "^0.1", features = ["catch-unwind"] }
|
2023-03-03 12:38:31 +00:00
|
|
|
byteorder = { version = "1.4.3" }
|
2023-11-12 13:18:27 +00:00
|
|
|
protobuf.workspace = true
|
|
|
|
tokio = { workspace = true, features = ["full", "rt-multi-thread", "tracing"] }
|
|
|
|
serde.workspace = true
|
2023-11-17 07:38:56 +00:00
|
|
|
serde_repr.workspace = true
|
2023-11-12 13:18:27 +00:00
|
|
|
serde_json.workspace = true
|
|
|
|
bytes.workspace = true
|
2023-03-03 12:38:31 +00:00
|
|
|
crossbeam-utils = "0.8.15"
|
2022-12-20 03:14:42 +00:00
|
|
|
lazy_static = "1.4.0"
|
2023-11-12 13:18:27 +00:00
|
|
|
tracing.workspace = true
|
2024-04-07 13:36:55 +00:00
|
|
|
lib-log.workspace = true
|
2024-05-22 06:24:11 +00:00
|
|
|
semver = "1.0.22"
|
2021-06-28 14:56:15 +00:00
|
|
|
|
2023-09-17 09:14:34 +00:00
|
|
|
# workspace
|
2024-08-13 15:36:44 +00:00
|
|
|
lib-dispatch = { workspace = true, features = ["local_set"] }
|
2024-04-02 02:14:09 +00:00
|
|
|
|
|
|
|
# Core
|
2023-11-12 10:00:07 +00:00
|
|
|
#flowy-core = { workspace = true, features = ["profiling"] }
|
2024-06-03 06:27:28 +00:00
|
|
|
#flowy-core = { workspace = true, features = ["verbose_log"] }
|
|
|
|
flowy-core = { workspace = true }
|
2024-04-02 02:14:09 +00:00
|
|
|
|
2024-01-29 21:36:27 +00:00
|
|
|
flowy-notification = { workspace = true, features = ["dart"] }
|
|
|
|
flowy-document = { workspace = true, features = ["dart"] }
|
|
|
|
flowy-config = { workspace = true, features = ["dart"] }
|
|
|
|
flowy-user = { workspace = true, features = ["dart"] }
|
|
|
|
flowy-date = { workspace = true, features = ["dart"] }
|
2023-09-17 09:14:34 +00:00
|
|
|
flowy-server = { workspace = true }
|
2024-04-22 04:46:58 +00:00
|
|
|
flowy-server-pub = { workspace = true }
|
2023-09-17 09:14:34 +00:00
|
|
|
collab-integrate = { workspace = true }
|
2023-12-30 23:29:40 +00:00
|
|
|
flowy-derive.workspace = true
|
2023-11-28 02:54:31 +00:00
|
|
|
serde_yaml = "0.9.27"
|
2024-01-29 21:36:27 +00:00
|
|
|
flowy-error = { workspace = true, features = ["impl_from_sqlite", "impl_from_dispatch_error", "impl_from_appflowy_cloud", "impl_from_reqwest", "impl_from_serde", "dart"] }
|
2024-08-19 14:08:10 +00:00
|
|
|
futures = "0.3.26"
|
2021-07-02 12:47:52 +00:00
|
|
|
|
2021-08-18 08:02:47 +00:00
|
|
|
[features]
|
2024-04-24 02:26:58 +00:00
|
|
|
default = ["dart"]
|
2023-02-10 06:30:34 +00:00
|
|
|
dart = ["flowy-core/dart"]
|
2024-04-24 02:26:58 +00:00
|
|
|
http_sync = ["flowy-core/http_sync"]
|
2023-01-08 04:10:53 +00:00
|
|
|
openssl_vendored = ["flowy-core/openssl_vendored"]
|
2024-04-02 12:02:45 +00:00
|
|
|
verbose_log = []
|
2022-02-08 06:36:59 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-12-30 23:29:40 +00:00
|
|
|
flowy-codegen = { workspace = true, features = ["dart"] }
|