12 lines
318 B
TOML
12 lines
318 B
TOML
[package]
|
|
name = "event-model"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
# Wire contract shared by the server and Rust client.
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
# Tool input stays untyped because its schema belongs to the driver.
|
|
serde_json = { version = "1", features = ["float_roundtrip"] }
|