-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (56 loc) · 1.63 KB
/
Cargo.toml
File metadata and controls
65 lines (56 loc) · 1.63 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
[workspace]
members = [".", "examples"]
[package]
name = "rust_native"
version = "1.4.0"
edition = "2021"
authors = ["Shahrear Hossain <shahrear@algoscienceacademy.com>"]
description = "A modern, cross-platform UI framework for building native applications"
documentation = "https://docs.rs/rust_native"
repository = "https://github.com/algoscienceacademy/RustUI"
license = "MIT"
readme = "README.md"
keywords = ["ui", "gui", "cross-platform", "framework", "native"]
categories = ["gui", "api-bindings", "graphics", "rendering", "wasm"]
default-run = "rust-native"
exclude = ["docs/private/*", "scripts/*"]
include = [
"src/**/*",
"examples/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
[lib]
name = "rust_native"
path = "src/lib.rs"
[dependencies]
winit = "0.28"
wgpu = "0.16"
raw-window-handle = "0.5"
futures = "0.3"
tokio = { version = "1.28", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
notify = "5.0"
crossterm = "0.25"
clap = { version = "4.0", features = ["derive"] }
toml = "0.7"
[target.'cfg(target_os = "ios")'.dependencies]
objc = "0.2"
metal = { version = "0.24", features = ["default"] }
[target.'cfg(target_os = "android")'.dependencies]
ndk-glue = "0.7"
[package.metadata.docs.rs]
all-features = true
default-target = "x86_64-unknown-linux-gnu"
targets = ["wasm32-unknown-unknown", "x86_64-apple-darwin"]
[package.metadata.algoscienceacademy]
project-type = "framework"
organization = "Algo Science Academy"
team = "UI Framework Team"
lead-developer = "Shahrear Hossain"
contact = "sshahrearhossain@gmail.com"
[[bin]]
name = "rust-native"
path = "src/bin/rust-native.rs"