Skip to content

Commit

Permalink
Rename within files
Browse files Browse the repository at this point in the history
  • Loading branch information
elbertronnie committed Nov 2, 2024
1 parent 4c9ab2d commit 37d6fde
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion libraries/path-bool/shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ in
libsoup
webkitgtk

# For Raw-rs tests
# For Rawkit tests
libraw

# Use Mold as a linker
Expand Down
2 changes: 1 addition & 1 deletion libraries/raw-rs/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions libraries/raw-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]>"]
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions libraries/raw-rs/README.md
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.
2 changes: 1 addition & 1 deletion libraries/raw-rs/build-camera-data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions libraries/raw-rs/tag-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions libraries/raw-rs/tests/tests.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Only compile this file if the feature "raw-rs-tests" is enabled
#![cfg(feature = "raw-rs-tests")]
// Only compile this file if the feature "rawkit-tests" is enabled
#![cfg(feature = "rawkit-tests")]

use raw_rs::RawImage;

Expand All @@ -16,7 +16,7 @@ use std::sync::atomic::{AtomicUsize, Ordering};
use std::time::Duration;

const TEST_FILES: [&str; 3] = ["ILCE-7M3-ARW2.3.5-blossoms.arw", "ILCE-7RM4-ARW2.3.5-kestrel.arw", "ILCE-6000-ARW2.3.1-windsock.arw"];
const BASE_URL: &str = "https://static.graphite.rs/test-data/libraries/raw-rs/";
const BASE_URL: &str = "https://static.graphite.rs/test-data/libraries/rawkit/";
const BASE_PATH: &str = "./tests/images/";

#[test]
Expand Down
2 changes: 1 addition & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ in
libsoup
webkitgtk

# For Raw-rs tests
# For Rawkit tests
libraw

# Use Mold as a linker
Expand Down

0 comments on commit 37d6fde

Please sign in to comment.