Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
# glog/log_severity.h(57): fatal error C1189: #error: ERROR macro is defined. Define
# GLOG_NO_ABBREVIATED_SEVERITIES before including logging.h. See the document for detail.
os: [ "ubuntu-latest", "macos-latest" ]
rust_toolchain: [ "1.67", "stable" ]
rust_toolchain: [ "1.87", "stable" ]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
matrix:
# Help needed for Windows, vcpkg builds it, but I don't know how to make it discoverable
os: [ "ubuntu-latest", "macos-latest" ]
rust_toolchain: [ "1.67", "stable" ]
rust_toolchain: [ "1.87", "stable" ]

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "ceres-solver"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
readme = "README.md"
description = "Safe Rust bindings for the Ceres Solver"
repository = "https://github.com/light-curve/ceres-solver-rs"
license = "MIT OR Apache-2.0"
rust-version = "1.67.0"
rust-version = "1.87.0"
exclude = [".github"]

[workspace]
Expand All @@ -22,7 +22,7 @@ source = ["ceres-solver-sys/source"]
default = ["system"]

[dependencies.ceres-solver-sys]
version = "0.4.0"
version = "0.5.0"
path = "./ceres-solver-sys"

[dependencies.thiserror]
Expand Down
8 changes: 4 additions & 4 deletions ceres-solver-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "ceres-solver-sys"
version = "0.4.2"
version = "0.5.0"
edition = "2021"
readme = "README.md"
description = "Unsafe Rust bindings for the Ceres Solver"
repository = "https://github.com/light-curve/ceres-solver-rs"
license = "MIT OR Apache-2.0"
rust-version = "1.67.0"
rust-version = "1.87.0"

[features]
system = ["pkg-config"]
Expand All @@ -20,12 +20,12 @@ path = "../ceres-solver-src"
optional = true

[dependencies.cxx]
version = "1,<=1.0.129" # 1.0.130 requires MSRV 1.70
version = "1,<=1.0.187"
features = ["c++17"]

[build-dependencies]
cmake = "0.1"
cxx-build = "1,<=1.0.129" # 1.0.130 requires MSRV 1.70
cxx-build = "1,<=1.0.187"
pkg-config = { version = "0.3", optional = true }

[dev-dependencies]
Expand Down
Loading