forked from fzyzcjy/flutter_rust_bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 948 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[workspace]
members = [
"frb_codegen",
"frb_rust",
"frb_macros",
"frb_example/pure_dart/rust",
"frb_example/pure_dart_multi/rust",
"frb_example/with_flutter/rust",
]
[workspace.package]
version = "1.74.0"
edition = "2018"
license = "MIT"
description = "High-level memory-safe binding generator for Flutter/Dart <-> Rust"
repository = "https://github.com/fzyzcjy/flutter_rust_bridge"
keywords = ["flutter", "dart", "ffi", "code-generation", "bindings"]
categories = ["development-tools::ffi"]
[workspace.dependencies]
allo-isolate = { version = "0.1.14-beta.3", features = ["anyhow"] }
anyhow = "1.0.64"
chrono = "0.4.23"
lazy_static = "1.4.0"
uuid = "1.1.2"
flutter_rust_bridge_macros = { path = "frb_macros", version = "1" }
flutter_rust_bridge = { path = "frb_rust", default-features = false, version = "1" }
flutter_rust_bridge_codegen = { path = "frb_codegen", version = "1" }
[profile.release]
strip = "debuginfo"
lto = "thin"