Skip to content
Merged
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
677 changes: 501 additions & 176 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
[workspace]
resolver = "2"

members = [
"src/rust",
]
members = ["src/rust"]

exclude = [
"inst/template",
Expand Down
5 changes: 2 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: Pmetrics
Title: Pmetrics for Population Modeling and Simulation
Version: 3.1.5
Version: 3.2
Authors@R: c(
person("Michael", "Neely", , "mneely@usc.edu", role = c("aut", "cre")),
person("Julián", "Otálvaro", , "juliandavid347@gmail.com", role = "aut"),
Expand Down Expand Up @@ -80,12 +80,11 @@ Suggests:
VignetteBuilder:
knitr
Config/Needs/website: r-lib/pkgdown, quarto
Config/rextendr/version: 0.4.2
Config/rextendr/version: 0.5.0
Config/roxygen2/version: 8.0.0
Config/testthat/edition: 3
Encoding: UTF-8
LazyData: true
LazyDataCompression: xz
Roxygen: list(markdown = TRUE)
SystemRequirements: Cargo (>= 1.82) (Rust's package manager), rustc
Comment thread
mhovd marked this conversation as resolved.
Comment thread
mhovd marked this conversation as resolved.

4 changes: 0 additions & 4 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,9 @@ export(clear_build)
export(cli_ask)
export(cli_df)
export(click_plot)
export(compile_model)
export(cor2cov)
export(create_pmetrics_project)
export(downloadR)
export(dummy_compile)
export(export_plotly)
Comment on lines 102 to 108
export(fit)
export(getCov)
Expand All @@ -115,7 +113,6 @@ export(getFixedColNum)
export(getPMoptions)
export(getPalettes)
export(interp)
export(is_cargo_installed)
export(latestR)
export(lit_sim)
export(makeAUC)
Expand Down Expand Up @@ -151,7 +148,6 @@ export(simulate_one)
export(ss.PK)
export(sub_plot)
export(template)
export(temporary_path)
export(three_comp_bolus)
export(three_comp_bolus_cl)
export(three_comp_iv)
Expand Down
4 changes: 2 additions & 2 deletions R/Deprecated.R
Original file line number Diff line number Diff line change
Expand Up @@ -241,13 +241,13 @@ make_valid <- function(...) {
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' Use PM_build instead.
#' Building is no longer required; models are compiled just-in-time at run time.
#' @param ... Not used
#' @author Michael Neely
#' @keywords internal
#' @export
PMbuild <- function(...) {
lifecycle::deprecate_warn("2.1.0", "PMbuild()", details = "Use PM_build() to compile Rust.")
lifecycle::deprecate_warn("2.1.0", "PMbuild()", details = "Building is no longer required; models are compiled just-in-time at run time.")
}


Expand Down
Loading
Loading