casuarius 0.1.0

A Rust implementation of the Cassowary linear constraint solving algorithm. This is a fork of `cassowary-rs` originally written by Dylan Ede. It makes a number of improvements including: * `Solver`s are Send + Sync * new variable types can be defined, removing the need to maintain a lookup map The Cassowary algorithm is designed for naturally laying out user interfaces using linear constraints, like 'this button must line up with this text box'.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
[dependencies.ordered-float]
version = "1.0"

[package]
authors = ["Schell Scivally <efsubenovex@gmail.com>"]
description = "A Rust implementation of the Cassowary linear constraint solving algorithm.\n\nThis is a fork of `cassowary-rs` originally written by Dylan Ede. It makes a number of improvements\nincluding:\n\n* `Solver`s are Send + Sync\n* new variable types can be defined, removing the need to maintain a lookup map\n\nThe Cassowary algorithm is designed for naturally laying out user interfaces using linear constraints,\nlike 'this button must line up with this text box'.\n"
homepage = "https://github.com/schell/casuarius"
keywords = ["constraint", "simplex", "user", "interface", "layout"]
license = "MIT / Apache-2.0"
name = "casuarius"
readme = "README.md"
repository = "https://github.com/schell/casuarius"
version = "0.1.0"