-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
48 lines (40 loc) · 1.43 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "directip"
version = "0.2.7"
authors = ["Guilherme Castelão <[email protected]>", "Luiz Irber <[email protected]>"]
edition = "2021"
description = "Iridium SBD Direct-IP communication protocol"
documentation = "https://docs.rs/directip"
license = "MIT OR Apache-2.0"
repository = "https://github.com/castelao/DirectIP"
rust-version = "1.70.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["directip-client", "directip-dump", "crates/storage"]
default-members = [".", "directip-client"]
[workspace.package]
authors = ["Guilherme Castelão <[email protected]>", "Luiz Irber <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/castelao/DirectIP"
[features]
serde = ["dep:serde", "dep:serde_bytes", "chrono/serde"]
[dependencies]
byteorder = "1"
chrono = "0.4.31"
log = "0.4"
thiserror = "1.0"
derive_builder = "0.11.2"
serde = { version = "1.0.147", optional = true, default-features = false, features=["serde_derive"]}
serde_bytes = { version = "0.11.8", optional = true }
[workspace.dependencies]
chrono = "0.4.31"
directip = { version = "0.2.6", path = "." }
sqlx = { version = "=0.7.0", features = ["sqlite", "runtime-tokio-native-tls"] }
tempfile = "3.8.0"
tokio = { version = "1.32.0", features = ["macros"] }
tracing = "0.1"
[lib]
name = "directip"
[dev-dependencies]
serde_json = "1.0.91"