File tree Expand file tree Collapse file tree 7 files changed +23
-18
lines changed Expand file tree Collapse file tree 7 files changed +23
-18
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,22 @@ djls-templates = { path = "crates/djls-templates" }
12
12
13
13
anyhow = " 1.0"
14
14
async-trait = " 0.1"
15
+ clap = { version = " 4.5" , features = [" derive" ] }
16
+ config = { version =" 0.15" , features = [" toml" ] }
17
+ directories = " 6.0"
18
+ insta = { version = " 1.42" , features = [" yaml" ] }
19
+ percent-encoding = " 2.3.1"
15
20
pyo3 = " 0.24"
16
- pyo3-build-config = " 0.24"
21
+ pyo3-build-config = { version = " 0.24" , features = [ " resolve-config " ] }
17
22
salsa = { git = " https://github.com/salsa-rs/salsa.git" , rev = " 7edce6e248f35c8114b4b021cdb474a3fb2813b3" }
18
23
serde = { version = " 1.0" , features = [" derive" ] }
19
24
serde_json = " 1.0"
20
25
tempfile = " 3.19"
26
+ tokio = { version = " 1.45.0" , features = [" full" ] }
27
+ toml = " 0.8"
28
+ tower-lsp-server = { version = " 0.21.1" , features = [" proposed" ] }
21
29
thiserror = " 2.0"
30
+ which = " 7.0.1"
22
31
23
32
[workspace .lints .clippy ]
24
33
pedantic = { level = " warn" , priority = -1 }
Original file line number Diff line number Diff line change @@ -5,15 +5,14 @@ edition = "2021"
5
5
6
6
[dependencies ]
7
7
anyhow = { workspace = true }
8
+ config = { workspace = true }
9
+ directories = { workspace = true }
8
10
serde = { workspace = true }
9
11
thiserror = { workspace = true }
10
-
11
- config = { version =" 0.15" , features = [" toml" ] }
12
- directories = " 6.0"
13
- toml = " 0.8"
12
+ toml = { workspace = true }
14
13
15
14
[dev-dependencies ]
16
- tempfile = " 3.19 "
15
+ tempfile = { workspace = true }
17
16
18
17
[lints ]
19
18
workspace = true
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ edition = "2021"
5
5
publish = false
6
6
7
7
[dependencies ]
8
- pyo3-build-config = { workspace = true , features = [ " resolve-config " ] }
8
+ pyo3-build-config = { workspace = true }
9
9
10
10
[lints ]
11
11
workspace = true
Original file line number Diff line number Diff line change @@ -10,8 +10,7 @@ default = []
10
10
[dependencies ]
11
11
pyo3 = { workspace = true }
12
12
salsa = { workspace = true }
13
-
14
- which = " 7.0.1"
13
+ which = { workspace = true }
15
14
16
15
[build-dependencies ]
17
16
djls-dev = { workspace = true }
Original file line number Diff line number Diff line change @@ -13,14 +13,13 @@ djls-project = { workspace = true }
13
13
djls-templates = { workspace = true }
14
14
15
15
anyhow = { workspace = true }
16
+ percent-encoding = { workspace = true }
16
17
pyo3 = { workspace = true }
17
18
salsa = { workspace = true }
18
19
serde = { workspace = true }
19
20
serde_json = { workspace = true }
20
-
21
- percent-encoding = " 2.3.1"
22
- tokio = { version = " 1.45.0" , features = [" full" ] }
23
- tower-lsp-server = { version = " 0.21.1" , features = [" proposed" ] }
21
+ tokio = { workspace = true }
22
+ tower-lsp-server = { workspace = true }
24
23
25
24
[build-dependencies ]
26
25
djls-dev = { workspace = true }
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ edition = "2021"
7
7
anyhow = { workspace = true }
8
8
serde = { workspace = true }
9
9
thiserror = { workspace = true }
10
- toml = " 0.8 "
10
+ toml = { workspace = true }
11
11
12
12
[dev-dependencies ]
13
- insta = { version = " 1.42 " , features = [ " yaml " ] }
14
- tempfile = " 3.19 "
13
+ insta = { workspace = true }
14
+ tempfile = { workspace = true }
15
15
16
16
[lints ]
17
17
workspace = true
Original file line number Diff line number Diff line change @@ -20,11 +20,10 @@ djls-project = { workspace = true }
20
20
djls-server = { workspace = true }
21
21
22
22
anyhow = { workspace = true }
23
+ clap = { workspace = true }
23
24
pyo3 = { workspace = true }
24
25
serde_json = { workspace = true }
25
26
26
- clap = { version = " 4.5" , features = [" derive" ] }
27
-
28
27
[build-dependencies ]
29
28
djls-dev = { workspace = true }
30
29
You can’t perform that action at this time.
0 commit comments