-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
33 lines (28 loc) · 919 Bytes
/
Cargo.toml
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
31
32
33
[package]
name = "binary-mirror-demo"
version.workspace = true
edition.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytes = "1.5"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
binary-mirror = { path = "binary-mirror" }
binary-mirror-derive = { path = "binary-mirror-derive" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.133"
chrono = { version = "0.4", features = ["serde"] }
rust_decimal = "1.36"
[workspace]
members = ["binary-mirror", "binary-mirror-derive"]
resolver = "2"
[workspace.package]
authors = ["Yvictor <[email protected]>"]
version = "0.1.14"
edition = "2021"
license = "MIT"
repository = "https://github.com/Yvictor/binary_mirror"
homepage = "https://github.com/Yvictor/binary_mirror"
rust-version = "1.70"
[dev-dependencies]
cargo-expand = "1.0"