You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As someone unfamiliar with rust and fontc, I would need some help getting started. Are there and how to get precompiled binaries? How to do a local debug build?
The text was updated successfully, but these errors were encountered:
no precompiled binaries yet. I'd start with installing the rust toolchain (https://www.rust-lang.org/learn/get-started) and then run cargo build (for default debug build) or cargo build --release, then you'll find the binaries in either target/debug or target/release sub-directories. cargo run -p fontc -- [fontc options] will rebuild and run fontc at the same time.
As someone unfamiliar with rust and fontc, I would need some help getting started. Are there and how to get precompiled binaries? How to do a local debug build?
The text was updated successfully, but these errors were encountered: