Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
wahn committed Apr 6, 2023
1 parent 273adf9 commit bf924c9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ atomic = "0.5.1"
blend_info = "0.2.9"
# blend_info = { path = "../blend_info" }
byteorder = "1.4.3"
clap = { version = "4.0.19", features = ["derive"] }
clap = { version = "4.2.1", features = ["derive"] }
crossbeam = "0.8.2"
crossbeam-channel = "0.5.6"
crossbeam-channel = "0.5.7"
hexf = "0.2.1"
image = "0.24.5"
image = "0.24.6"
impl_ops = "0.1.1"
lazy_static = "1.4.0"
num = "0.4.0"
num_cpus = "1.15.0"
pbr = "1.0.4"
pest = "2.5.3"
pest_derive = "2.5.3"
pbr = "1.1.1"
pest = "2.5.7"
pest_derive = "2.5.7"
ply-rs = "0.1.3"
rayon = "1.6.1"
rayon = "1.7.0"
smallvec = "1.10.0"
strum = "0.24.1"
strum_macros = "0.24.3"
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# -- Project information -----------------------------------------------------

project = 'rs-pbrt'
copyright = '2022, Jan Douglas Bert Walter'
copyright = '2023, Jan Douglas Bert Walter'
author = 'Jan Douglas Bert Walter'

# The full version, including alpha/beta/rc tags
Expand Down
2 changes: 1 addition & 1 deletion docs/source/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ render a `PNG`_ image (currently always being called ``pbrt.png``):
# output
rs_pbrt version 0.9.8 (unknown) [Detected 28 cores]
Copyright (c) 2016-2022 Jan Douglas Bert Walter.
Copyright (c) 2016-2023 Jan Douglas Bert Walter.
Rust code based on C++ code by Matt Pharr, Greg Humphreys, and Wenzel Jakob.
Film "image"
Expand Down
2 changes: 1 addition & 1 deletion src/bin/rs_pbrt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ fn main() {
let cropx1: f32 = args.cropx1;
let cropy0: f32 = args.cropy0;
let cropy1: f32 = args.cropy1;
println!("Copyright (c) 2016-2022 Jan Douglas Bert Walter.");
println!("Copyright (c) 2016-2023 Jan Douglas Bert Walter.");
println!("Rust code based on C++ code by Matt Pharr, Greg Humphreys, and Wenzel Jakob.");
println!();
let (mut api_state, mut bsdf_state) = pbrt_init(
Expand Down

0 comments on commit bf924c9

Please sign in to comment.