15 lines
330 B
TOML
15 lines
330 B
TOML
[package]
|
|
name = "onyx-flutter"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "staticlib"]
|
|
|
|
[dependencies]
|
|
flutter_rust_bridge = "=2.11.1"
|
|
onyx-core = { path = "../../../crates/onyx-core" }
|
|
uuid = { version = "1", features = ["serde", "v4"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
once_cell = "1"
|