-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
93 lines (71 loc) · 3.15 KB
/
Copy pathCargo.toml
File metadata and controls
93 lines (71 loc) · 3.15 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[workspace]
resolver = "2"
members = [
"crates/*",
]
exclude = [
"examples/example-share-sheet",
]
# Note: we haven't yet implemented the top-level crate of re-exports.
#
# ## The top-level crate just re-exports the contents of each sub-crate
# ## in the workspace, for the sake of convenience.
# [package]
# name = "robius"
# version.workspace = true
# edition.workspace = true
# authors.workspace = true
# description.workspace = true
# homepage.workspace = true
# categories.workspace = true
# license.workspace = true
# readme.workspace = true
# repository.workspace = true
## Package details that are shared across multiple crates in the workspace.
[workspace.package]
version = "0.3.1"
edition = "2021"
authors = [
"Kevin Boos <kevinaboos@gmail.com>",
"Project Robius Maintainers",
]
description = "Rust abstractions for accessing platform APIs and OS services, for app development."
homepage = "https://robius.rs/"
categories = ["os", "hardware-support", "api-bindings"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/project-robius/robius"
[workspace.dependencies]
## General dependencies (target-independent) used in multiple crates in the workspace.
robius-common = { version = "0.3.0", path = "crates/common" }
cfg-if = "1.0.0"
log = "0.4"
retry = "2.0.0"
tokio = { version = "1.43.1", default-features = false }
## Android-specific dependencies used in multiple crates in the workspace.
jni = { version = "0.21.1", default-features = false }
robius-android-env = "0.2.0"
## Apple-specific dependencies (iOS/macOS) used in multiple crates in the workspace.
block2 = "0.6.1"
dispatch2 = { version = "0.3.1", default-features = false, features = ["std"] }
objc2 = "0.6.4"
objc2-app-kit = { version = "0.3.2", default-features = false, features = ["std"] }
objc2-authentication-services = { version = "0.3.2", default-features = false, features = ["std"] }
objc2-core-location = { version = "0.3.2", default-features = false, features = ["std"] }
objc2-foundation = { version = "0.3.2", default-features = false, features = ["std"] }
objc2-local-authentication = { version = "0.3.2", default-features = false, features = ["std"] }
objc2-photos = { version = "0.3.2", default-features = false, features = ["std"] }
objc2-photos-ui = { version = "0.3.2", default-features = false, features = ["std"] }
objc2-ui-kit = { version = "0.3.2", default-features = false, features = ["std"] }
objc2-uniform-type-identifiers = { version = "0.3.2", default-features = false, features = ["std"] }
## Linux-specific dependencies used in multiple crates in the workspace.
## Note: default features are off so that each crate can pick the
## zbus executor backend (async-io / tokio) that it wants.
zbus = { version = "5.11", default-features = false }
zbus_polkit = "5.0.0"
libc = "0.2"
## Windows-specific dependencies used in multiple crates in the workspace.
windows-core = { version = "0.56.0", default-features = false }
windows = { version = "0.56.0", default-features = false }
## Build-time dependencies used in multiple crates in the workspace.
android-build = "0.1.2"