-
Notifications
You must be signed in to change notification settings - Fork 345
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (23 loc) · 756 Bytes
/
Cargo.toml
File metadata and controls
28 lines (23 loc) · 756 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
[package]
name = "neural-trader-wasm"
version = "0.1.1"
edition = "2021"
license = "MIT"
publish = false
description = "WASM bindings for Neural Trader — market events, coherence gates, replay memory"
[package.metadata.wasm-pack.profile.release]
wasm-opt = false
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
neural-trader-core = { path = "../neural-trader-core" }
neural-trader-coherence = { path = "../neural-trader-coherence" }
neural-trader-replay = { path = "../neural-trader-replay" }
wasm-bindgen = { workspace = true }
serde = { workspace = true }
serde-wasm-bindgen = "0.6"
console_error_panic_hook = { version = "0.1", optional = true }
[dev-dependencies]
wasm-bindgen-test = "0.3"
[features]
default = ["console_error_panic_hook"]