-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 806 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 806 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
[package]
name = "icp-js-bindgen"
description = "Candid bindgen in JavaScript."
version = "0.0.0"
edition = "2024"
license = "Apache-2.0"
[lints]
workspace = true
[lib]
path = "./src/lib.rs"
crate-type = ["cdylib"]
[package.metadata.wasm-pack.profile.release]
wasm-opt = ["-Oz", "--enable-mutable-globals"]
[dependencies]
candid = { git = "https://github.com/dfinity/candid", branch = "next" }
candid_parser = { git = "https://github.com/dfinity/candid", branch = "next" }
wasm-bindgen = "0.2"
console_error_panic_hook = "0.1"
wasm-bindgen-console-logger = "0.1"
log = "0.4"
pretty = "0.12"
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.6"
tsify = { version = "0.5", features = ["js"] }
swc_core = { version = "44.0.0", features = ["common", "ecma_ast", "ecma_codegen"] }