forked from mozilla/uniffi-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (29 loc) · 996 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
[package]
name = "uniffi_bindgen"
version = "0.24.1"
authors = ["Firefox Sync Team <[email protected]>"]
description = "a multi-language bindings generator for rust (codegen and cli tooling)"
documentation = "https://mozilla.github.io/uniffi-rs"
homepage = "https://mozilla.github.io/uniffi-rs"
repository = "https://github.com/mozilla/uniffi-rs"
license = "MPL-2.0"
edition = "2021"
keywords = ["ffi", "bindgen"]
[dependencies]
anyhow = "1"
askama = { version = "0.12", default-features = false, features = ["config"] }
camino = "1.0.8"
cargo_metadata = "0.15"
fs-err = "2.7.0"
glob = "0.3"
goblin = "0.6"
heck = "0.4"
once_cell = "1.12"
paste = "1.0"
serde = "1"
serde_json = "1.0.80"
toml = "0.5"
uniffi_meta = { path = "../uniffi_meta", version = "=0.24.1" }
uniffi_testing = { path = "../uniffi_testing", version = "=0.24.1" }
uniffi_udl = { path = "../uniffi_udl", version = "=0.24.1" }
clap = { version = "4", default-features = false, features = ["std", "derive"], optional = true }