nandi/jolt-nativepublic Fork 0
460541b3803224e2b0199f6384c01f9635c6d618
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.

BUCK · 18 lines · 527 BPython Blame HistoryRaw
Build under buck2, with the toolchain pinned rather than found 460541b nandi 19d ago1# The egui theme layer. Mirrors crates/vidya-core/Cargo.toml.
2rust_library(
3 name = "vidya",
4 # include_bytes! reads these at compile time, so they belong in srcs
5 # rather than resources.
6 srcs = glob(["src/**/*.rs"]) + [
7 "assets/vidya-symbols.ttf",
8 "assets/emoji/twemoji-72x72.zip",
9 ],
10 crate_root = "src/lib.rs",
11 edition = "2021",
12 visibility = ["PUBLIC"],
13 deps = [
14 "//third-party/rust:egui",
15 "//third-party/rust:png",
16 "//third-party/rust:zip",
17 ],
18)