tk_sys/
lib.rs

1//! Rust bindings for the Tk Graphics library
2//!
3//! Function specific documentation can be found at the [Tcl website]
4//!
5//! [Tcl website]: https://www.tcl-lang.org/man/tcl8.6/TkLib/contents.htm
6//!
7//! ## Note
8//! This library only seems to work if it's ran in an enviroment that has a
9//! graphics shell.
10#![allow(non_upper_case_globals)]
11#![allow(non_camel_case_types)]
12#![allow(non_snake_case)]
13
14include!(concat!(env!("OUT_DIR"), "/bindings.rs"));