-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (67 loc) · 1.96 KB
/
Copy pathCargo.toml
File metadata and controls
72 lines (67 loc) · 1.96 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "ua-client"
version = "1.3.0"
edition = "2024"
description = "OPC UA browser/inspector with a terminal UI and a native egui GUI, built on async-opcua"
readme = "README.md"
homepage = "https://github.com/FreeOpcUa/ua-client"
repository = "https://github.com/FreeOpcUa/ua-client"
license = "MIT"
keywords = ["client", "egui", "gui", "opc-ua", "opcua"]
categories = ["gui", "network-programming"]
exclude = ["/ua-client.png"]
[features]
default = ["tui"]
tui = ["dep:cursive", "dep:arboard"]
egui = ["dep:eframe", "dep:egui", "dep:egui_extras", "dep:rfd"]
[dependencies]
anyhow = "1"
arboard = { version = "3", optional = true }
clap = { version = "4", features = ["derive"] }
async-opcua = { version = "0.19", default-features = false, features = [
"client",
"json"
] }
cursive = { version = "0.21", default-features = false, features = [
"crossterm-backend"
], optional = true }
futures = "0.3"
eframe = { version = "0.35", default-features = false, features = [
"default_fonts",
"glow",
"persistence",
"wayland",
"x11"
], optional = true }
egui = { version = "0.35", optional = true }
egui_extras = { version = "0.35", optional = true }
rfd = { version = "0.17", optional = true }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = [
"macros",
"rt-multi-thread",
"sync",
"time"
] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[[bin]]
name = "ua-tui"
required-features = ["tui"]
[[bin]]
name = "ua-client"
required-features = ["egui"]
[package.metadata.deb]
name = "ua-tui"
maintainer = "Olivier Roulet <olivier.roulet@gmail.com>"
copyright = "2025, FreeOpcUa contributors"
license-file = ["LICENSE", "0"]
section = "utils"
priority = "optional"
extended-description = "Terminal OPC UA browser/inspector (TUI front-end of ua-client)."
depends = "$auto"
assets = [
["target/release/ua-tui", "usr/bin/", "755"],
["README.md", "usr/share/doc/ua-tui/README.md", "644"],
]