diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ece47158..b3f26c70 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,11 @@ jobs: steps: - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: 1.56.0 + override: true - name: Install wasm32 target if: matrix.config.kind == 'test_release' run: rustup target add wasm32-unknown-unknown diff --git a/Cargo.toml b/Cargo.toml index 3b066567..4320c058 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "dprint-plugin-typescript" -version = "0.58.1" +version = "0.59.0" authors = ["David Sherret "] -edition = "2018" +edition = "2021" homepage = "https://github.com/dprint/dprint-plugin-typescript" keywords = ["formatting", "formatter", "typescript", "javascript"] license = "MIT" @@ -25,8 +25,8 @@ wasm = ["serde_json", "dprint-core/wasm"] tracing = ["dprint-core/tracing"] [dependencies] -deno_ast = { version = "0.4.1", features = ["view"] } -dprint-core = { version = "0.46.4", features = ["formatting"] } +deno_ast = { version = "0.5.0", features = ["view"] } +dprint-core = { version = "0.47.0", features = ["formatting"] } rustc-hash = "1.1.0" serde = { version = "1.0.118", features = ["derive"] } serde_json = { version = "1.0", optional = true }