mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-21 01:58:12 +08:00
* Initial vector modify node * Initial extraction of data from monitor nodes * Migrate to point id * Start converting to modify node * Non destructive spline tool (tout le reste est cassé) * Fix unconnected modify node * Fix freehand tool * Pen tool * Migrate demo art * Select points * Fix the demo artwork * Fix the X and Y inputs for path tool * G1 continous toggle * Delete points * Fix test * Insert point * Improve robustness of handles * Fix GRS shortcuts on path * Dragging points * Fix build * Preserve opposing handle lengths * Update demo art and snapping * Fix polygon tool * Double click end anchor * Improve dragging * Fix text shifting * Select only connected verts * Colinear alt * Cleanup * Fix imports * Improve pen tool avoiding handle placement * Improve disolve * Remove pivot widget from Transform node properties * Fix demo art * Fix bugs * Re-save demo artwork * Code review * Serialize hashmap as tuple vec to enable deserialize_inputs * Fix migrate * Add document upgrade function to editor_api.rs * Finalize document upgrading * Rename to the Path node * Remove smoothing from Freehand tool * Upgrade demo artwork * Propertly disable raw-rs tests --------- Co-authored-by: Keavon Chambers <keavon@keavon.com> Co-authored-by: Adam <adamgerhant@gmail.com> Co-authored-by: Dennis Kobert <dennis@kobert.dev>
27 lines
811 B
TOML
27 lines
811 B
TOML
[package]
|
|
name = "raw-rs"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
authors = ["Graphite Authors <contact@graphite.rs>"]
|
|
description = "A library to extract images from camera raw files"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
keywords = ["raw", "tiff", "camera", "image"]
|
|
categories = ["multimedia::images", "multimedia::encoding"]
|
|
homepage = "https://github.com/GraphiteEditor/Graphite/tree/master/libraries/raw-rs"
|
|
repository = "https://github.com/GraphiteEditor/Graphite/tree/master/libraries/raw-rs"
|
|
documentation = "https://docs.rs/raw-rs"
|
|
|
|
[dependencies]
|
|
bitstream-io = "2.3.0"
|
|
num_enum = "0.7.2"
|
|
thiserror = { workspace = true }
|
|
tag-derive = { path = "tag-derive" }
|
|
libraw-rs = { version = "0.0.4", optional = true }
|
|
|
|
[dev-dependencies]
|
|
downloader = "0.2.7"
|
|
|
|
[features]
|
|
raw-rs-tests = ["libraw-rs"]
|