diff options
Diffstat (limited to '')
-rw-r--r-- | third_party/rust/uniffi-example-geometry/Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/third_party/rust/uniffi-example-geometry/Cargo.toml b/third_party/rust/uniffi-example-geometry/Cargo.toml new file mode 100644 index 0000000000..ac84351ddb --- /dev/null +++ b/third_party/rust/uniffi-example-geometry/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "uniffi-example-geometry" +edition = "2021" +version = "0.21.0" +authors = ["Firefox Sync Team <sync-team@mozilla.com>"] +license = "MPL-2.0" +publish = false + +[lib] +crate-type = ["lib", "cdylib"] +name = "uniffi_geometry" + +[dependencies] +uniffi_macros = {path = "../../uniffi_macros"} +uniffi = {path = "../../uniffi", features=["builtin-bindgen"]} + +[build-dependencies] +uniffi_build = {path = "../../uniffi_build", features=["builtin-bindgen"]} |