-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (60 loc) · 2.45 KB
/
Cargo.toml
File metadata and controls
79 lines (60 loc) · 2.45 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
[workspace]
resolver = "3"
members = [
"crates/*",
]
# 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.2.0"
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.
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.0", default-features = false, features = ["std"] }
objc2 = "0.6.1"
objc2-app-kit = { version = "0.3.1", default-features = false, features = ["std"] }
objc2-core-location = { version = "0.3.1", default-features = false, features = ["std"] }
objc2-foundation = { version = "0.3.1", default-features = false, features = ["std"] }
objc2-local-authentication = { version = "0.3.1", default-features = false, features = ["std"] }
objc2-ui-kit = { version = "0.3.1", default-features = false, features = ["std"] }
## Linux-specific dependencies used in multiple crates in the workspace.
polkit = "=0.17.0"
gio = "=0.17.0"
## 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"