| Crates.io | taitank-safe |
| lib.rs | taitank-safe |
| version | 0.1.0 |
| created_at | 2024-11-03 13:58:45.130606+00 |
| updated_at | 2025-02-16 06:28:16.35516+00 |
| description | taitank in safe rust |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1433787 |
| size | 174,387 |
Rust binding of tencent/taitank provides safe binding to the layout library.
[dependencies]
taitank_safe = "0.1.0"
use taitank_safe::*;
let mut root = node_create();
set_width(&mut root, 100.0);
set_height(&mut root, 100.0);
layout!(&mut root);
$ git clone git@github.com:rustq/taitank-safe.git
$ cd taitank-safe
$ cargo run --example demo