-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 795 Bytes
/
Cargo.toml
File metadata and controls
26 lines (22 loc) · 795 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
[package]
name = "vector-vrl-web-playground"
version = "0.1.0"
edition = "2024"
repository = "https://github.com/vectordotdev/vector"
description = "A playground for experimenting with VRL"
license = "MPL-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
wasm-bindgen = "0.2"
vrl.workspace = true
serde.workspace = true
web-sys = { version = "0.3", features = ["Window", "Performance"] }
gloo-utils = { version = "0.2", features = ["serde"] }
vector-vrl-all.workspace = true
enrichment = { path = "../../enrichment" }
# Required per https://docs.rs/getrandom/latest/getrandom/#webassembly-support
getrandom = { version = "0.2.15", features = ["js"] }
[build-dependencies]
cargo-lock = "10.1.0"