-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 863 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 863 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
34
35
36
[package]
name = "ferrosaur"
publish = true
version = "0.1.1"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
categories = ["development-tools::ffi", "web-programming"]
description = "Static codegen for deno_core. 🦀📲🦕"
homepage = "https://tonywu6.github.io/ferrosaur/"
keywords = ["deno", "v8", "javascript"]
readme = "README.md"
[lib]
proc-macro = true
[dependencies]
darling = "0.20.10"
heck = { workspace = true }
proc-macro2 = { workspace = true }
quote = { workspace = true }
syn = { workspace = true }
tap = { workspace = true }
[dev-dependencies]
anyhow = { workspace = true }
deno_core = { workspace = true }
example-runtime = { path = "../../examples/_runtime" }
insta = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }