-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
65 lines (61 loc) · 2.03 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "uniffi-bindgen-java"
version = "0.1.0"
authors = ["IronCore Labs <info@ironcorelabs.com>"]
readme = "README.md"
license = "MPL-2.0"
repository = "https://github.com/IronCoreLabs/uniffi-bindgen-java"
documentation = "https://docs.rs/uniffi-bindgen-java"
keywords = [
"bindgen",
"ffi",
"java"
]
description = "a java bindings generator for uniffi rust"
exclude = [
".github/*",
".envrc",
"flake.nix",
"flake.lock",
"RELEASING.md"
]
edition = "2021"
[lib]
name = "uniffi_bindgen_java"
path = "src/lib.rs"
[[bin]]
name = "uniffi-bindgen-java"
path = "src/main.rs"
[dependencies]
anyhow = "1"
askama = { version = "0.12", default-features = false, features = ["config"] }
camino = "1.1.6"
cargo_metadata = "0.15"
clap = { version = "4", default-features = false, features = [
"derive",
"help",
"std",
"cargo",
] }
heck = "0.5"
once_cell = "1.19.0"
paste = "1"
regex = "1.10.4"
serde = "1"
textwrap = "0.16.1"
toml = "0.5" # can't be on 8, `Value` is part of public interface
uniffi_bindgen = "0.28.1"
uniffi_meta = "0.28.1"
[dev-dependencies]
glob = "0.3"
itertools = "0.13.0"
uniffi-example-arithmetic = { git = "https://github.com/mozilla/uniffi-rs.git", rev = "38383ef6" }
uniffi-example-custom-types = { git = "https://github.com/mozilla/uniffi-rs.git", rev = "38383ef6" }
uniffi-example-futures = { git = "https://github.com/mozilla/uniffi-rs.git", rev = "38383ef6" }
uniffi-example-geometry = { git = "https://github.com/mozilla/uniffi-rs.git", rev = "38383ef6" }
uniffi-example-rondpoint = { git = "https://github.com/mozilla/uniffi-rs.git", rev = "38383ef6" }
uniffi-fixture-coverall = { git = "https://github.com/mozilla/uniffi-rs.git", rev = "38383ef6" }
uniffi-fixture-ext-types = { git = "https://github.com/mozilla/uniffi-rs.git", rev = "38383ef6" }
uniffi-fixture-futures = { git = "https://github.com/mozilla/uniffi-rs.git", rev = "38383ef6" }
uniffi-fixture-time = { git = "https://github.com/mozilla/uniffi-rs.git", rev = "38383ef6" }
uniffi_testing = { git = "https://github.com/mozilla/uniffi-rs.git", rev = "38383ef6" }