-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (47 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
55 lines (47 loc) · 1.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
[package]
name = "webbrowser"
description = "Open URLs in web browsers available on a platform"
version = "1.2.1"
authors = ["Amod Malviya @amodm"]
documentation = "https://docs.rs/webbrowser"
homepage = "https://github.com/amodm/webbrowser-rs"
repository = "https://github.com/amodm/webbrowser-rs"
readme = "README.md"
keywords = ["webbrowser", "browser"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.85"
[dependencies]
log = { version = "0.4", default-features = false }
url = { version = "2", default-features = false, features = ["std"] }
[target.'cfg(target_family = "wasm")'.dependencies.web-sys]
version = "0.3"
features = ['Window']
[features]
hardened = []
disable-wsl = []
wasm-console = ["web-sys/console"]
[target.'cfg(target_os = "macos")'.dependencies]
core-foundation = "0.10"
[target.'cfg(target_os = "android")'.dependencies]
jni = "0.22.2"
ndk-context = "0.1"
[target.'cfg(any(target_os = "ios", target_os = "tvos", target_os = "visionos"))'.dependencies]
objc2 = "0.6"
objc2-foundation = { version = "0.3", default-features = false, features = [
"std",
"NSDictionary",
"NSString",
"NSURL",
] }
[dev-dependencies]
actix-web = "4"
actix-files = "0.6"
crossbeam-channel = "0.5"
env_logger = "0.11"
rand = "0.10"
serial_test = "3.4"
tokio = { version = "1", features = ["full"] }
urlencoding = "2.1"
[target.'cfg(target_os = "android")'.dev-dependencies]
android-activity = { version = "0.6", features = ["native-activity"] }