Skip to content

Commit

Permalink
use TOML instead of Pkg.TOML to read TOML files
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC committed Aug 22, 2024
1 parent add4916 commit 6040ccd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,15 @@ CSTParser = "00ebfdb7-1f24-5e51-bd34-a7502290713f"
CommonMark = "a80b9123-70ca-4bc0-993e-6e3bcb318db6"
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Glob = "c27321d9-0574-5035-807b-f59d2c89b15c"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
Tokenize = "0796e94c-ce3b-5d07-9a54-7f471281c624"

[compat]
CSTParser = "^3.4.2"
CommonMark = "0.5, 0.6, 0.7, 0.8"
DataStructures = "0.17, 0.18"
Glob = "1.3"
Pkg = "1"
PrecompileTools = "1"
Tokenize = "^0.5.16"
julia = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/JuliaFormatter.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ end
using CSTParser
using Tokenize
using DataStructures
using Pkg.TOML: parsefile
using TOML: parsefile
using Glob
import CommonMark: block_modifier
import Base: get, pairs
Expand Down

0 comments on commit 6040ccd

Please sign in to comment.