-
-
Notifications
You must be signed in to change notification settings - Fork 446
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c9ab2d
commit 37d6fde
Showing
8 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,7 @@ in | |
libsoup | ||
webkitgtk | ||
|
||
# For Raw-rs tests | ||
# For Rawkit tests | ||
libraw | ||
|
||
# Use Mold as a linker | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ quote = "1.0.37" | |
syn = "2.0.79" | ||
|
||
[package] | ||
name = "raw-rs" | ||
name = "rawkit" | ||
version = "0.0.1" | ||
edition = "2021" | ||
authors = ["Graphite Authors <[email protected]>"] | ||
|
@@ -16,12 +16,12 @@ 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" | ||
homepage = "https://github.com/GraphiteEditor/Graphite/tree/master/libraries/rawkit" | ||
repository = "https://github.com/GraphiteEditor/Graphite/tree/master/libraries/rawkit" | ||
documentation = "https://docs.rs/rawkit" | ||
|
||
[features] | ||
raw-rs-tests = ["dep:image", "dep:libraw-rs", "dep:reqwest", "dep:rayon"] | ||
rawkit-tests = ["dep:image", "dep:libraw-rs", "dep:reqwest", "dep:rayon"] | ||
|
||
[dependencies] | ||
# Local dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[crates.io](https://crates.io/crates/raw-rs) • [docs.rs](https://docs.rs/raw-rs) • [repo](https://github.com/GraphiteEditor/Graphite/tree/master/libraries/raw-rs) | ||
[crates.io](https://crates.io/crates/rawkit) • [docs.rs](https://docs.rs/rawkit) • [repo](https://github.com/GraphiteEditor/Graphite/tree/master/libraries/rawkit) | ||
|
||
# Raw-rs | ||
# Rawkit | ||
|
||
A library to extract images from camera raw files. | ||
|
||
**WARNING**: This library is currently in-progress and not functional yet. | ||
|
||
This library is built to extract the images from the raw files of Sony's cameras. In the future the library will add support for all other major camera manufacturers. | ||
|
||
Raw-rs is built for the needs of [Graphite](https://graphite.rs), an open source 2D graphics editor. We hope it may be useful to others, but presently Graphite is its primary user. Pull requests are welcomed for new features, code cleanup, ergonomic enhancements, performance improvements, and documentation clarifications. | ||
Rawkit is built for the needs of [Graphite](https://graphite.rs), an open source 2D graphics editor. We hope it may be useful to others, but presently Graphite is its primary user. Pull requests are welcomed for new features, code cleanup, ergonomic enhancements, performance improvements, and documentation clarifications. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ edition = "2021" | |
authors = ["Graphite Authors <[email protected]>"] | ||
description = "Procedural macro to build the camera data into rust code" | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/GraphiteEditor/Graphite/tree/master/libraries/raw-rs/build-camera-data" | ||
repository = "https://github.com/GraphiteEditor/Graphite/tree/master/libraries/rawkit/build-camera-data" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,9 @@ version = "0.0.1" | |
publish = false | ||
edition = "2021" | ||
authors = ["Graphite Authors <[email protected]>"] | ||
description = "Derive macro for the Tag trait in raw-rs" | ||
description = "Derive macro for the Tag trait in rawkit" | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/GraphiteEditor/Graphite/tree/master/libraries/raw-rs/tag-derive" | ||
repository = "https://github.com/GraphiteEditor/Graphite/tree/master/libraries/rawkit/tag-derive" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,7 @@ in | |
libsoup | ||
webkitgtk | ||
|
||
# For Raw-rs tests | ||
# For Rawkit tests | ||
libraw | ||
|
||
# Use Mold as a linker | ||
|