diff --git a/Cargo.toml b/Cargo.toml index cf3a505a..7c5cce49 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,6 +28,10 @@ tracing = ["dprint-core/tracing"] # This original line only works when depending on a public version, which doesn't have some of the needed changes; leaving this here to simplify merge conflict resolution when pulling in upstream # dprint-core = { version = "0.44.0", features = ["formatting"] } dprint-core = { path = "./dprint/crates/core", features = ["formatting"] } +# Comment the line above and use the following line instead with CARGO_NET_GIT_FETCH_WITH_CLI=true for local development +# E.g.: CARGO_NET_GIT_FETCH_WITH_CLI=true cargo build --release --target wasm32-unknown-unknown +# dprint-core = { git = "ssh://org-2562356@github.com/Canva/dprint.git", features = ["formatting"], branch = "main" } + fnv = "1.0.7" serde = { version = "1.0.118", features = ["derive"] } serde_json = { version = "1.0", optional = true }