Skip to content

Commit

Permalink
Merge pull request #52 from GuillaumeGomez/switch-to-rinja
Browse files Browse the repository at this point in the history
Switch from askama to rinja
  • Loading branch information
EricCrosson authored Sep 3, 2024
2 parents 3e5d7dd + ee56843 commit c3a5caf
Show file tree
Hide file tree
Showing 3 changed files with 174 additions and 44 deletions.
214 changes: 172 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/typescript_tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ name = "typescript_tools"
path = "src/lib.rs"

[dependencies]
askama = "0.12"
globwalk = "0.9"
pariter = "0.5"
pathdiff = "0.2"
rinja = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }

Expand Down
2 changes: 1 addition & 1 deletion crates/typescript_tools/src/make_depend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ use std::fmt::Display;
use std::fs;
use std::path::{Path, PathBuf};

use askama::Template;
use pathdiff::diff_paths;
use rinja::Template;

use crate::configuration_file::ConfigurationFile;
use crate::io::FromFileError;
Expand Down

0 comments on commit c3a5caf

Please sign in to comment.