nandi/jolt-nativepublic Fork 0
a9f3673367a8f0d3dd7d6ab1d380484d1df795c1
Commits
Clone
git clone https://git.rickub.com/nandi/jolt-native.git
git clone ssh://git@rickub.com/nandi/jolt-native.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Cargo.toml · 166 lines · 8.6 KBTOML Blame HistoryRaw
Build under buck2, with the toolchain pinned rather than found 460541b nandi 19d ago1# The third-party graph, as one manifest for reindeer to vendor and generate
2# BUCK targets from. Every external crate the workspace's four members depend
3# on appears here once, with the union of the features they ask for; first-party
4# crates keep their own BUCK files and depend on `//third-party/rust:<name>`.
5#
Give the third-party crates a platform to be Android on 0238622 nandi 19d ago6# Android-only dependencies are at the bottom, in a target section, so their
7# features are resolved for the device and unified into nothing else.
Build under buck2, with the toolchain pinned rather than found 460541b nandi 19d ago8[package]
9name = "jolt-native-third-party"
10version = "0.0.0"
11edition = "2021"
12publish = false
13
14# Its own workspace: reindeer resolves this graph on its own, and the root
15# workspace must not try to make it a member.
16[workspace]
17
18# Nothing is compiled from here; the manifest exists to pin a graph.
19[lib]
20path = "lib.rs"
21
22[dependencies]
23anyhow = "1"
24# cpal's cross-platform sample trait; see the note above the patch table.
25dasp_sample = "0.11"
26# `image-data` is the clipboard path for a pasted picture; egui does not deliver
27# one. Desktop only — arboard has no Android backend.
28arboard = { version = "3", default-features = false, features = ["image-data"] }
29# Without cpal's `pipewire` feature, which is on by default under cargo: it
30# builds libspa-sys, which wants pkg-config and PipeWire's headers on the build
31# machine — the one system dependency the zig toolchain cannot stand in for.
32# The buck2 build is therefore `--no-default-features` shaped for now: ALSA PCM
33# names only, everything else equal.
34cpal = { path = "cpal" }
35# `default_fonts` because a shared library has no host app to install a font set
36# for it. vidya-core turns egui's defaults off; the union is what gets built.
37egui = { version = "0.31", features = ["default_fonts"] }
38egui-winit = "0.31"
39egui_glow = "0.31"
40env_logger = "0.11"
41glow = "0.16"
42glutin = "0.32"
43glutin-winit = "0.5"
44# JPEG only — the V4L2 path converts MJPEG frames, and nothing here reads or
45# writes a picture file.
46image = { version = "0.25", default-features = false, features = ["jpeg"] }
Let the media plane cross to the phone, camera and all fd0e21a nandi 18d ago47# `capture-camera` is NOT here: features declared on a shared dependency are
48# resolved for every platform, and rusty-capture is V4L2 and friends. It goes in
49# the desktop target section below, so the phone's graph never reaches it.
Build under buck2, with the toolchain pinned rather than found 460541b nandi 19d ago50iroh-live = { git = "https://github.com/n0-computer/iroh-live", rev = "edd9bcc530a615f3ab3a6919e96790a077905376", default-features = false, features = [
51 "opus",
52 "h264",
53] }
54libc = "0.2"
55log = "0.4"
56moq-lite = { git = "https://github.com/Frando/moq", branch = "deps/iroh-main" }
57moq-native = { git = "https://github.com/Frando/moq", branch = "deps/iroh-main", default-features = false, features = [
58 "noq",
59 "websocket",
60 "aws-lc-rs",
61] }
62mp4 = "0.14"
63n0-future = "0.3"
64# C++, which is why the toolchain needs both halves of zig.
65openh264 = { version = "0.9", default-features = false, features = ["source"] }
66png = "0.17"
67rand = "0.8"
68# aws-lc-rs rather than ring, to match what moq-native and iroh already pull in.
69rustls = { version = "0.23", default-features = false, features = ["aws-lc-rs"] }
70tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time"] }
71# One query parameter (`inst=`) needs escaping. That is the whole use.
72urlencoding = "2"
73url = "2"
74# V4L2 capture: the fallback path for cameras rusty-capture mishandles.
75v4l2r = "0.0.7"
76winit = "0.30"
77zip = { version = "2", default-features = false, features = ["deflate"] }
78
79# Carried over from the workspace root verbatim: iroh-live wants an unreleased
80# iroh 0.97, and the revs are the ones freeq locks. They travel together and are
81# not independently bumpable.
82# cpal's own dependencies, named here so reindeer gives them public aliases:
83# the hand-written target in cpal/BUCK lives in a different package, and
84# reindeer only makes top-level deps visible outside its own.
85[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "netbsd"))'.dependencies]
86alsa = "0.11"
87
88[target.'cfg(target_vendor = "apple")'.dependencies]
89coreaudio-rs = { version = "0.14", default-features = false, features = ["core_audio", "audio_toolbox"] }
90mach2 = "0.5"
91objc2 = "0.6"
92objc2-audio-toolbox = { version = "0.3", default-features = false, features = ["std", "AUComponent", "AudioUnitProperties"] }
93objc2-core-audio = { version = "0.3", default-features = false, features = ["std", "AudioHardware", "AudioHardwareDeprecated", "objc2", "objc2-foundation"] }
94objc2-core-audio-types = { version = "0.3", default-features = false, features = ["std", "CoreAudioBaseTypes"] }
95objc2-core-foundation = "0.3"
96objc2-foundation = "0.3"
97
Let the media plane cross to the phone, camera and all fd0e21a nandi 18d ago98# The camera, on a machine that has one behind an ioctl. See the note on the
99# shared `iroh-live` above for why the feature is here rather than there.
100[target.'cfg(not(target_os = "android"))'.dependencies]
101iroh-live = { git = "https://github.com/n0-computer/iroh-live", rev = "edd9bcc530a615f3ab3a6919e96790a077905376", default-features = false, features = [
102 "capture-camera",
103] }
104
105# The device. Both objects cross now: libvidya for the UI, and libjoltmoq for
106# the media plane, whose camera is Camera2 over JNI rather than V4L2 and whose
107# audio is cpal's AAudio host rather than PipeWire.
Give the third-party crates a platform to be Android on 0238622 nandi 19d ago108[target.'cfg(target_os = "android")'.dependencies]
Let the media plane cross to the phone, camera and all fd0e21a nandi 18d ago109# NOT `capture-camera`, for the reason given on the shared `iroh-live` above.
110# `android` is a different feature and a needed one: it links `ndk`, which
111# rusty-codecs' format.rs references under cfg(android) for the MediaCodec path,
112# and without it the crate fails on its own imports.
113iroh-live = { git = "https://github.com/n0-computer/iroh-live", rev = "edd9bcc530a615f3ab3a6919e96790a077905376", default-features = false, features = [
114 "android",
115] }
Give the third-party crates a platform to be Android on 0238622 nandi 19d ago116# `vidya_open_url` is an ACTION_VIEW intent there, which is a JNI call against
Let the media plane cross to the phone, camera and all fd0e21a nandi 18d ago117# the activity the glue holds; libjoltmoq's Camera2 bridge is the other caller.
Give the third-party crates a platform to be Android on 0238622 nandi 19d ago118#
119# Renamed because cpal wants jni 0.21 on the same platform, and cpal is a path
120# dependency above — so reindeer gives its deps public aliases too, and two
121# crates called `jni` cannot both have one. The consumer says `named_deps`.
122jni-0-22 = { package = "jni", version = "0.22" }
Let the media plane cross to the phone, camera and all fd0e21a nandi 18d ago123# cpal's AAudio host, and the crates it reaches it through. cpal is a path
124# dependency, so its own manifest cannot give these public aliases — they are
125# named here for the same reason the alsa and coreaudio rows above are, and
126# ../cpal/BUCK's Android row is what consumes them.
127#
128# `audio` is the AAudio binding itself and `api-level-26` is the floor it needs;
129# without either, cpal's android host compiles against imports that are not
130# there. This unions with the plain `ndk` iroh-live asks for above.
131ndk = { version = "0.9", default-features = false, features = [
132 "audio",
133 "api-level-26",
134] }
135ndk-context = "0.1"
136# The unrenamed one, and cpal's: 0.21, not the 0.22 above.
137jni = "0.21"
138num-derive = "0.4"
139num-traits = "0.2"
Give the third-party crates a platform to be Android on 0238622 nandi 19d ago140# The feature is what pulls in android-activity, and android-activity is what
141# owns the event loop: the APK's NativeActivity has no Java main to call into,
142# so the glue is the entry point. Without it the crate compiles to a backend of
143# no platform at all and fails on its own imports.
144winit = { version = "0.30", features = ["android-native-activity"] }
145
Build under buck2, with the toolchain pinned rather than found 460541b nandi 19d ago146[patch.crates-io]
147iroh = { git = "https://github.com/n0-computer/iroh", rev = "8af8370b" }
148iroh-base = { git = "https://github.com/n0-computer/iroh", rev = "8af8370b" }
149iroh-relay = { git = "https://github.com/n0-computer/iroh", rev = "8af8370b" }
150iroh-gossip = { git = "https://github.com/n0-computer/iroh-gossip", rev = "1038f721" }
151noq = { git = "https://github.com/n0-computer/noq", rev = "ab042ea7e3f7bae1e43eaba2ac9dba47ddb52e69" }
152noq-proto = { git = "https://github.com/n0-computer/noq", rev = "ab042ea7e3f7bae1e43eaba2ac9dba47ddb52e69" }
153noq-udp = { git = "https://github.com/n0-computer/noq", rev = "ab042ea7e3f7bae1e43eaba2ac9dba47ddb52e69" }
154web-transport-iroh = { git = "https://github.com/Frando/web-transport", rev = "f7a523f1" }
155web-transport-noq = { git = "https://github.com/Frando/web-transport", rev = "f7a523f1" }
156web-transport-proto = { git = "https://github.com/Frando/web-transport", rev = "f7a523f1" }
157web-transport-trait = { git = "https://github.com/Frando/web-transport", rev = "f7a523f1" }
158
159# moq-media (inside iroh-live) asks for cpal on `branch = "master"`, which
160# floats, and master no longer compiles against the iroh-live rev pinned above.
161# The vendored copy is the last commit that does — 63ea9ff upstream, per its
162# .cargo_vcs_info.json. It has to be a path rather than that rev: cargo
163# canonicalises the URL, so naming the same repo without `.git` is still "the
164# same source", which a patch may not retarget.
165[patch."https://github.com/RustAudio/cpal.git"]
166cpal = { path = "cpal" }