-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (42 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
49 lines (42 loc) · 1.23 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
[package]
name = "rust-foundation-audiovisual"
version = "0.1.0"
edition = "2021"
description = "Rust Foundation audiovisual platform with real-time AI/ML integration and WebGPU compute"
authors = ["Dr. Kapil Bambardekar <kapil.bambardekar@gmail.com>", "Grigori Korotkikh <vdmo@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/compiling-org/rust-foundation-audiovisual"
homepage = "https://compiling-org.netlify.app"
keywords = ["rust", "audiovisual", "ai", "ml", "webgpu", "real-time"]
categories = ["multimedia", "game-development", "graphics", "wasm"]
[workspace]
members = [
"rust-client",
]
[dependencies]
# Core creative data processing
anyhow = "1.0"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.0", features = ["v4", "serde"] }
# Web and graphics
wgpu = "0.19"
wasm-bindgen = "0.2"
js-sys = "0.3"
web-sys = "0.3"
# AI/ML integration
iron-learn = "0.1"
lance = "0.9"
ndarray = "0.15"
[features]
default = ["rust-client"]
rust-client = []
[profile.release]
overflow-checks = true
lto = "fat"
codegen-units = 1
[profile.dev]
overflow-checks = true