-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
18 lines (16 loc) · 625 Bytes
/
Cargo.toml
File metadata and controls
18 lines (16 loc) · 625 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "formate-js"
version = "0.1.0"
edition = "2024"
description = 'Formate plugin for reformatting JavaScript and TypeScript files with dprint.'
license = "MIT"
homepage = "https://github.com/python-formate/formate-js"
repository = "https://github.com/python-formate/formate-js"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "formate_js"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.27.2", features = ["extension-module", "experimental-inspect", "multiple-pymethods"] }
dprint-plugin-typescript = "0.95.15"
dprint-core = "0.67.4"