├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src ├── lib.rs ├── operators.rs └── solver_impl.rs └── tests ├── common └── mod.rs ├── quadrilateral.rs └── removal.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | /.idea/ 4 | /*.iml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanede/cassowary-rs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanede/cassowary-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanede/cassowary-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanede/cassowary-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanede/cassowary-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanede/cassowary-rs/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanede/cassowary-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/operators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanede/cassowary-rs/HEAD/src/operators.rs -------------------------------------------------------------------------------- /src/solver_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanede/cassowary-rs/HEAD/src/solver_impl.rs -------------------------------------------------------------------------------- /tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanede/cassowary-rs/HEAD/tests/common/mod.rs -------------------------------------------------------------------------------- /tests/quadrilateral.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanede/cassowary-rs/HEAD/tests/quadrilateral.rs -------------------------------------------------------------------------------- /tests/removal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanede/cassowary-rs/HEAD/tests/removal.rs --------------------------------------------------------------------------------