File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ Most users start with `srcmap-sourcemap`. Add `srcmap-generator` if you produce
2525
2626``` toml
2727[dependencies ]
28- srcmap-sourcemap = " 0.1 "
29- srcmap-generator = " 0.1 " # if you produce source maps
30- srcmap-remapping = " 0.1 " # if you compose/concatenate source maps
28+ srcmap-sourcemap = " 0.2 "
29+ srcmap-generator = " 0.2 " # if you produce source maps
30+ srcmap-remapping = " 0.2 " # if you compose/concatenate source maps
3131```
3232
3333> srcmap is pre-1.0. The parsing and lookup APIs are stable; generator and remapping APIs may evolve.
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Encodes and decodes source map `mappings` strings using the Base64 VLQ format sp
1313
1414``` toml
1515[dependencies ]
16- srcmap-codec = " 0.1 "
16+ srcmap-codec = " 0.2 "
1717```
1818
1919## Usage
@@ -49,7 +49,7 @@ Enable the `parallel` feature for multi-threaded encoding via [rayon](https://cr
4949
5050``` toml
5151[dependencies ]
52- srcmap-codec = { version = " 0.1 " , features = [" parallel" ] }
52+ srcmap-codec = { version = " 0.2 " , features = [" parallel" ] }
5353```
5454
5555``` rust
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Builds source maps incrementally by adding mappings one at a time. Outputs stand
1313
1414``` toml
1515[dependencies ]
16- srcmap-generator = " 0.1 "
16+ srcmap-generator = " 0.2 "
1717```
1818
1919## Usage
@@ -67,7 +67,7 @@ Enable the `parallel` feature for multi-threaded VLQ encoding via [rayon](https:
6767
6868``` toml
6969[dependencies ]
70- srcmap-generator = { version = " 0.1 " , features = [" parallel" ] }
70+ srcmap-generator = { version = " 0.2 " , features = [" parallel" ] }
7171```
7272
7373### ` StreamingGenerator `
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Merges or chains source maps from multiple build steps into a single map. Drop-i
1313
1414``` toml
1515[dependencies ]
16- srcmap-remapping = " 0.1 "
16+ srcmap-remapping = " 0.2 "
1717```
1818
1919## Usage
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Parses source map JSON and provides O(log n) position lookups. Implements the [E
1313
1414``` toml
1515[dependencies ]
16- srcmap-sourcemap = " 0.1 "
16+ srcmap-sourcemap = " 0.2 "
1717```
1818
1919## Usage
You can’t perform that action at this time.
0 commit comments