# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "easy-signed-distance-field" version = "0.1.1" description = "A simple, pure rust signed distance field renderer" readme = "README.md" keywords = [ "game", "sdf", "signed", "distance", "field", ] license = "MIT" repository = "https://github.com/gabdube/easy-signed-distance-field" resolver = "2" [package.metadata.docs.rs] all-features = true [[bench]] name = "simple" harness = false [[bench]] name = "font" harness = false required-features = ["font"] [dependencies.image] version = "0.24" features = ["png"] optional = true default-features = false [dependencies.ttf-parser] version = "0.15.2" optional = true [dev-dependencies.criterion] version = "0.3" features = ["html_reports"] [features] default = [] export = ["image"] font = ["ttf-parser"] render = []