-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
58 lines (56 loc) · 1.73 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
[workspace]
members = [
"jetpack_api",
"jetpack_api_integration_tests",
"jp_uniffi_bindgen",
"swift_helper_cli",
]
resolver = "2"
[workspace.dependencies]
anyhow = "1.0"
async-trait = "0.1"
base64 = "0.22"
chrono = "0.4"
clap = "4.5"
convert_case = "0.6"
futures = "0.3"
http = "1.1"
indoc = "2.0"
parse_link_header = "0.3"
paste = "1.0"
proc-macro-crate = "3.1.0"
proc-macro2 = "1.0"
quote = "1.0"
regex = "1.11"
reqwest = "0.12"
rocket = "0.5"
rstest = "0.21"
rstest_reuse = "0.7.0"
serde = "1.0"
serde_json = "1.0"
serial_test = "3.1"
strum = "0.26"
strum_macros = "0.26"
syn = "2.0"
thiserror = "1.0"
tokio = "1.40"
toml = "0.8"
trybuild = "1.0"
uniffi = "0.28"
url = "2.5"
uuid = "1.10"
wp_api = "0.1.0"
wp_api_integration_tests = "0.1.0"
wp_cli = "0.1.0"
wp_contextual = "0.1.0"
wp_derive_request_builder = "0.1.0"
wp_serde_helper = "0.1.0"
uniffi-swift-helper = "0.1.0"
[patch.crates-io]
wp_api = { git = "https://github.com/automattic/wordpress-rs.git", branch = "swift-multiple-crates-in-one-package" }
wp_api_integration_tests = { git = "https://github.com/automattic/wordpress-rs.git", branch = "swift-multiple-crates-in-one-package" }
wp_cli = { git = "https://github.com/automattic/wordpress-rs.git", branch = "swift-multiple-crates-in-one-package" }
wp_contextual = { git = "https://github.com/automattic/wordpress-rs.git", branch = "swift-multiple-crates-in-one-package" }
wp_derive_request_builder = { git = "https://github.com/automattic/wordpress-rs.git", branch = "swift-multiple-crates-in-one-package" }
wp_serde_helper = { git = "https://github.com/automattic/wordpress-rs.git", branch = "swift-multiple-crates-in-one-package" }
uniffi-swift-helper = { git = "https://github.com/automattic/uniffi-swift-helper.git", branch = "real-stuff" }