diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-12-13 12:57:14 +0400 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-12-13 12:57:14 +0400 |
commit | ff5f81498ba1807ab06ffb5dadb1c99c102e0284 (patch) | |
tree | 4c19b6daaac3b4857022f724005095474ed35b45 /Cargo.toml | |
parent | 60410a42e46d97e3581493c9d185184b7fd87bb5 (diff) | |
download | markdown-rs-ff5f81498ba1807ab06ffb5dadb1c99c102e0284.tar.gz markdown-rs-ff5f81498ba1807ab06ffb5dadb1c99c102e0284.tar.bz2 markdown-rs-ff5f81498ba1807ab06ffb5dadb1c99c102e0284.zip |
Replace build script with private crate
Closes GH-34.
Closes GH-35.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -21,7 +21,6 @@ harness = false log = "0.4" unicode-id = { version = "0.3", features = ["no_std"] } - [dev-dependencies] env_logger = "0.10" criterion = "0.4" @@ -33,7 +32,5 @@ swc_core = { version = "0.43.30", features = [ "common", ] } -[build-dependencies] -regex = "1" -reqwest = "0.11" -tokio = { version = "1", features = ["full"] } +[workspace] +members = ["generate"] |