Update links from graphite.rs to graphite.art

This commit is contained in:
Keavon Chambers
2025-12-06 02:08:32 -08:00
parent a5cf62a90b
commit fb0fab0622
100 changed files with 575 additions and 576 deletions

View File

@@ -3,11 +3,11 @@ name = "dyn-any"
version = "0.3.1"
rust-version = "1.85"
edition = "2024"
authors = ["Graphite Authors <contact@graphite.rs>"]
authors = ["Graphite Authors <contact@graphite.art>"]
description = "An Any trait that works for arbitrary lifetimes"
license = "MIT OR Apache-2.0"
readme = "./README.md"
homepage = "https://graphite.rs/libraries/dyn-any"
homepage = "https://crates.io/crates/dyn-any"
repository = "https://github.com/GraphiteEditor/Graphite/tree/master/libraries/dyn-any"
documentation = "https://docs.rs/dyn-any"

View File

@@ -2,7 +2,7 @@
name = "dyn-any-derive"
version = "0.3.0"
edition = "2024"
authors = ["Graphite Authors <contact@graphite.rs>"]
authors = ["Graphite Authors <contact@graphite.art>"]
description = "#[derive(DynAny)]"
documentation = "https://docs.rs/dyn-any-derive"

View File

@@ -3,7 +3,7 @@ name = "math-parser"
version = "0.0.0"
rust-version = "1.85"
edition = "2024"
authors = ["Graphite Authors <contact@graphite.rs>"]
authors = ["Graphite Authors <contact@graphite.art>"]
description = "Parser for Graphite style mathematics expressions"
license = "MIT OR Apache-2.0"

View File

@@ -2,7 +2,7 @@
name = "path-bool"
version = "0.1.0"
rust-version = "1.85"
authors = ["Graphite Authors <contact@graphite.rs>", "Adam Platkevič"]
authors = ["Graphite Authors <contact@graphite.art>", "Adam Platkevič"]
edition = "2024"
keywords = [
"bezier",

View File

@@ -10,7 +10,7 @@ syn = "2.0.87"
name = "rawkit"
version = "0.1.0"
edition = "2024"
authors = ["Graphite Authors <contact@graphite.rs>"]
authors = ["Graphite Authors <contact@graphite.art>"]
description = "A library to extract images from camera raw files"
license = "MIT OR Apache-2.0"
readme = "README.md"

View File

@@ -6,7 +6,7 @@ A library to extract images from camera raw files.
It currently only works with the `.arw` files from Sony's cameras. In the future, the library will add support for all other major camera manufacturers.
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 cameras, features, code cleanup, ergonomic enhancements, performance improvements, and documentation clarifications.
Rawkit is built for the needs of [Graphite](https://graphite.art), 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 cameras, features, code cleanup, ergonomic enhancements, performance improvements, and documentation clarifications.
### Using Rawkit

View File

@@ -2,7 +2,7 @@
name = "rawkit-proc-macros"
version = "0.1.0"
edition = "2024"
authors = ["Graphite Authors <contact@graphite.rs>"]
authors = ["Graphite Authors <contact@graphite.art>"]
description = "Procedural macros for Rawkit"
license = "MIT OR Apache-2.0"
readme = "README.md"

View File

@@ -15,7 +15,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/rawkit/";
const BASE_URL: &str = "https://static.graphite.art/test-data/libraries/rawkit/";
const BASE_PATH: &str = "./tests/images/";
#[test]