-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 773 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 773 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 = "fluent-bit-matchy"
version = "0.4.0"
edition = "2021"
authors = ["MatchyLabs Contributors"]
license = "Apache-2.0"
description = "Fluent Bit WASM filter plugin for matchy threat intelligence matching"
repository = "https://github.com/matchylabs/fluent-bit-matchy"
[lib]
crate-type = ["cdylib"]
[dependencies]
matchy = { git = "https://github.com/matchylabs/matchy", branch = "main", default-features = false }
matchy-extractor = { git = "https://github.com/matchylabs/matchy", branch = "main" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yml = "0.0.12"
[profile.release]
opt-level = "s" # Optimize for size (important for WASM)
lto = true
codegen-units = 1
strip = true
[profile.dev]
opt-level = 0
debug = true