-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 897 Bytes
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 897 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
29
30
31
32
33
34
35
36
# SPDX-FileCopyrightText: 2026 Alexander R. Croft
# SPDX-License-Identifier: GPL-3.0-or-later
[workspace]
members = [
"crates/observer-core",
"crates/observer-cli",
"crates/observer-rust",
"crates/observer-rust-host",
"crates/observer-selftest",
"lib/rust",
]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.1.1"
license = "GPL-3.0-or-later"
authors = ["Observer Contributors"]
repository = "https://github.com/frogfishio/observer"
homepage = "https://github.com/frogfishio/observer"
[workspace.dependencies]
anyhow = "1.0"
base64 = "0.22"
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
clap_mangen = "0.2"
libc = "0.2"
regex = "1.11"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
thiserror = "2.0"
toml = "0.8"