Skip to content

Commit 1f776ee

Browse files
committed
update deps
1 parent 6d102ef commit 1f776ee

6 files changed

+37
-23
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ Suggests:
2020
testthat (>= 3.0.0),
2121
wk
2222
Config/rextendr/version: 0.3.1.9000
23-
SystemRequirements: Cargo (Rust's package manager), rustc
23+
SystemRequirements: Cargo (Rust's package manager), rustc >= 1.70.0
2424
Config/testthat/edition: 3
2525
Config/Needs/website: rmarkdown

cran-comments.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
## R CMD check results
22

3-
0 errors | 0 warnings | 1 notes
3+
0 errors | 0 warnings | 0 notes
44

5-
* This release addresses CRAN's warnings caused by R-devel warnings
6-
The large tarball size is due to vendored dependencies.
5+
* Addresses CRAN removal:
6+
- updating libR-sys dependency for MacOS oldrel errors
7+
- setting minimum version of rustc >= 1.70.0 in `SystemRequirements`. **NOTE** this will result in build errors on fedora due to outdated Rust installation.
8+
9+
* The large tarball size is due to vendored dependencies.

src/rust/Cargo.lock

+24-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ crate-type = ['staticlib']
88
name = 'rsgeo'
99

1010
[dependencies]
11-
# extendr-api = { git = "https://github.com/extendr/extendr", rev = "32fce33627862bd25e3e4ddcb842cfea323ebb47" }
1211
extendr-api = { version = "0.7.0" }
1312
geo = { version = "0.28.0" }
1413
geo-types = "0.7.8"
@@ -20,4 +19,5 @@ sfconversions = { version = "0.3.0", git = "https://github.com/JosiahParry/sfcon
2019
[patch.crates-io]
2120
geo-types = { git = "https://github.com/georust/geo" }
2221
geo = { git = "https://github.com/georust/geo" }
22+
libR-sys = { git = "https://github.com/extendr/libR-sys", rev = "976c56d396175f8d09548b0a1f0a77fc393018f2" }
2323
# libR-sys = { git = "https://github.com/extendr/libR-sys", branch = "parry-wasm" }

src/rust/vendor-config.toml

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ git = "https://github.com/JosiahParry/sfconversions"
1010
rev = "bac5a7108e5e9b20b9ee11f455827ce255947156"
1111
replace-with = "vendored-sources"
1212

13+
[source."git+https://github.com/extendr/libR-sys?rev=976c56d396175f8d09548b0a1f0a77fc393018f2"]
14+
git = "https://github.com/extendr/libR-sys"
15+
rev = "976c56d396175f8d09548b0a1f0a77fc393018f2"
16+
replace-with = "vendored-sources"
17+
1318
[source."git+https://github.com/georust/geo"]
1419
git = "https://github.com/georust/geo"
1520
replace-with = "vendored-sources"

src/rust/vendor.tar.xz

-8.83 KB
Binary file not shown.

0 commit comments

Comments
 (0)