forked from gobley/gobley
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (63 loc) · 1.86 KB
/
Cargo.toml
File metadata and controls
69 lines (63 loc) · 1.86 KB
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
66
67
68
69
[workspace]
members = [
"crates/gobley-uniffi-bindgen",
"crates/gobley-wasm-transformer",
"tests/build-common",
"tests/gradle/android-linking",
"tests/gradle/cargo-only",
"tests/gradle/js-only",
"tests/gradle/jvm-only",
"tests/uniffi/callbacks",
"tests/uniffi/chronological",
"tests/uniffi/coverall",
"tests/uniffi/coverall-android",
"tests/uniffi/coverall-jvm",
"tests/uniffi/docstring",
"tests/uniffi/docstring-proc-macro",
"tests/uniffi/dynamic-library-dependencies",
"tests/uniffi/dynamic-library-dependencies/the-dependency",
"tests/uniffi/enum-types",
"tests/uniffi/error-types",
"tests/uniffi/ext-types/custom-types",
"tests/uniffi/ext-types/ext-types",
"tests/uniffi/ext-types/ext-types-proc-macro",
"tests/uniffi/ext-types/external-crate",
"tests/uniffi/ext-types/http-headermap",
"tests/uniffi/ext-types/sub-lib",
"tests/uniffi/ext-types/uniffi-one",
"tests/uniffi/futures",
"tests/uniffi/keywords",
"tests/uniffi/large-enum",
"tests/uniffi/large-error",
"tests/uniffi/proc-macro",
"tests/uniffi/simple-fns",
"tests/uniffi/simple-iface",
"tests/uniffi/struct-default-values",
"tests/uniffi/trait-methods",
"tests/uniffi/type-limits",
"examples/arithmetic-procmacro",
"examples/audio-cpp-app",
"examples/custom-types",
"examples/todolist",
"examples/tokio-blake3-app",
"examples/tokio-boring-app",
]
resolver = "2"
# Used in tests/gradle/cargo-only
[profile.my-opt-level-2-profile]
inherits = "dev"
opt-level = 2
[workspace.dependencies]
askama = { version = "0.13.0", default-features = false }
anyhow = "1.0.86"
camino = "1.1.1"
clap = "4.5.7"
lazy_static = "1.4"
once_cell = "1.18"
thiserror = "1"
tokio = "1"
uniffi = "=0.29.5"
uniffi_bindgen = "=0.29.5"
uniffi_macros = "=0.29.5"
uniffi_meta = "=0.29.5"
url = "2.2"