-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (26 loc) · 741 Bytes
/
Cargo.toml
File metadata and controls
33 lines (26 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "rusty-source-map"
version = "0.2.2"
edition = "2018"
authors = ["CGQAQ <m.jason.liu@outlook.com>"]
homepage = "https://github.com/CGQAQ/rusty-source-map"
repository = "https://github.com/CGQAQ/rusty-source-map"
license = "MIT"
description = "`source-map` NPM package written in Rust."
exclude=["/bench/fixture", "/target", "/.idea"]
[profile.release]
opt-level = 3
[lib]
path = "src/lib.rs"
[[bin]]
name = "main"
path = "bench/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
source-map-mappings = "0.5.0"
url = "2.2.2"
regex = "1.5.4"
lazy_static = "1.4.0"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
rayon = "1.5.1"