File tree Expand file tree Collapse file tree 4 files changed +62
-69
lines changed Expand file tree Collapse file tree 4 files changed +62
-69
lines changed Original file line number Diff line number Diff line change @@ -32,24 +32,24 @@ include = [
32
32
[dependencies ]
33
33
actix-rt = " 1.1.1"
34
34
actix-web = " 3.3.2"
35
- anyhow = " 1.0.41 "
35
+ anyhow = " 1.0.43 "
36
36
bytes = " 0.5.6"
37
- futures = " 0.3.15 "
38
- handlebars = " 4.1.0 "
37
+ futures = " 0.3.16 "
38
+ handlebars = " 4.1.2 "
39
39
log = " 0.4.14"
40
40
mime = " 0.3.16"
41
41
mime_guess = " 2.0.3"
42
- serde = { version = " 1.0.126 " , features = [" derive" ] }
43
- serde_json = { version = " 1.0.64 " , features = [" preserve_order" ] }
42
+ serde = { version = " 1.0.130 " , features = [" derive" ] }
43
+ serde_json = { version = " 1.0.67 " , features = [" preserve_order" ] }
44
44
stderrlog = " 0.5.1"
45
- structopt = " 0.3.21 "
46
- thiserror = " 1.0.25 "
45
+ structopt = " 0.3.22 "
46
+ thiserror = " 1.0.28 "
47
47
walkdir = " 2.3.2"
48
48
49
49
[dev-dependencies ]
50
- criterion = " 0.3.4 "
51
- env_logger = " 0.8.4 "
52
- insta = " 1.7.1 "
50
+ criterion = " 0.3.5 "
51
+ env_logger = " 0.9.0 "
52
+ insta = " 1.7.2 "
53
53
lazy_static = " 1.4.0"
54
54
maplit = " 1.0.2"
55
55
regex = " 1.5.4"
Original file line number Diff line number Diff line change @@ -517,7 +517,7 @@ mod tests {
517
517
518
518
let template = "this is partial: {{> abc.html.hbs}}" ;
519
519
let expected_output =
520
- "this is partial: a\n b\n c\n \n subdirectory entries:\n /subdirectory/c\n " ;
520
+ "this is partial: a\n b\n \ n c\n \n subdirectory entries:\n /subdirectory/c\n " ;
521
521
522
522
let renderable = content_engine
523
523
. new_template (
@@ -548,7 +548,7 @@ mod tests {
548
548
let content_engine = shared_content_engine. read ( ) . unwrap ( ) ;
549
549
550
550
let route = route ( "/abc" ) ;
551
- let expected_output = "a\n b\n c\n \n subdirectory entries:\n /subdirectory/c\n " ;
551
+ let expected_output = "a\n b\n \ n c\n \n subdirectory entries:\n /subdirectory/c\n " ;
552
552
553
553
let content = content_engine
554
554
. get ( & route)
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ input_file: samples/partials
5
5
6
6
-- -
7
7
a .html .hbs : " a\n "
8
- ab .html .hbs : " a\n b\n "
9
- abc .html .hbs : " a\n b\n c\n\n subdirectory entries:\n /subdirectory/c\n "
8
+ ab .html .hbs : " a\n b\n\n "
9
+ abc .html .hbs : " a\n b\n\ n c\n\n subdirectory entries:\n /subdirectory/c\n "
10
10
b .html : " b\n "
11
11
subdirectory .html .hbs : " subdirectory entries:\n /subdirectory/c\n "
12
12
subdirectory / c .html .hbs : " c\n "
You can’t perform that action at this time.
0 commit comments