nandi/jolt-nativepublic Fork 0
726f7c6204744da1ec206370a11b6c8d5e00c669
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.

Build under buck2, with the toolchain pinned rather than found 460541b · on 726f7c6204744da1ec206370a11b6c8d5e00c669 · nandi · 19d ago
BUCK · 30 lines · 955 BPython Blame HistoryRaw
 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
# The AV media plane behind a C ABI: libjoltmoq.so.
rust_library(
    name = "jolt-moq",
    srcs = glob(["src/**/*.rs"]),
    crate = "joltmoq",
    crate_root = "src/lib.rs",
    edition = "2021",
    preferred_linkage = "shared",
    soname = "libjoltmoq.so",
    visibility = ["PUBLIC"],
    deps = [
        "//crates/jolt-abi:jolt-abi",
        "//third-party/rust:anyhow",
        "//third-party/rust/cpal:cpal",
        "//third-party/rust:env_logger",
        "//third-party/rust:image",
        "//third-party/rust:iroh-live",
        "//third-party/rust:libc",
        "//third-party/rust:log",
        "//third-party/rust:moq-lite",
        "//third-party/rust:moq-native",
        "//third-party/rust:n0-future",
        "//third-party/rust:rand",
        "//third-party/rust:rustls",
        "//third-party/rust:tokio",
        "//third-party/rust:url",
        "//third-party/rust:urlencoding",
        "//third-party/rust:v4l2r",
    ],
)