vegafusion_common/
lib.rs

1pub mod column;
2pub mod data;
3pub mod datatypes;
4pub mod error;
5pub mod escape;
6
7pub use arrow;
8pub use datafusion_common;
9pub use datafusion_expr;
10
11#[cfg(test)]
12mod tests {
13    #[test]
14    fn it_works() {
15        assert_eq!(2 + 2, 4);
16    }
17}