-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (25 loc) · 840 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
[package]
name = "cot-proto"
description = "Cursor on Target (CoT) protocol (de)serialization / parsing"
version = "0.3.7"
edition = "2021"
keywords = ["cot", "protocol", "cursor_on_target"]
categories = ["network-programming"]
license = "Apache-2.0"
repository = "https://github.com/ajfabbri/cot-proto"
documentation = "https://docs.rs/cot-proto"
rust-version = "1.74"
authors = ["Aaron Fabbri"]
[features]
default = ["tak"]
# test all features: use this in CI
test-default = ["tak"]
tak = []
[dependencies]
chrono = { version = "0.4.38", default-features = false, features = ["std", "now"] }
quick-xml = { version = "0.37.0", features = ["serialize"] }
serde = { version = "1.0.214", features = ["derive"] }
thiserror = "1.0.68"
uuid = { version = "1.11.0", features = ["v4"] }
[dev-dependencies]
serde_json = { version = "1.0.132" }