-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (40 loc) · 884 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
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "asi-rs"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "asi_ccd"
path = "src/bin/ccd/main.rs"
[[bin]]
name = "asi_ccd_mqtt"
path = "src/bin/ccd/mqtt.rs"
[[bin]]
name = "test_camera"
path = "src/bin/test/main.rs"
[[bin]]
name = "asi_efw"
path = "src/bin/efw/main.rs"
[dependencies]
libc = "0.2"
env_logger = "0.9"
log = "0.4"
rfitsio = { git = "https://github.com/devducks/rfitsio", tag = "v0.2.0" }
num = "0.4"
astrotools = "0.4"
lightspeed-astro = "1.1"
tonic = "0.9"
tonic-reflection = "0.9"
tokio = { version = "1", features = ["rt-multi-thread", "signal", "tracing"] }
convert_case = "0.5"
rand = "0.8"
libasi = { version = "0.1.0", path = "./libasi" }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
rumqttc = "0.21.0"
console-subscriber = "0.1.9"
[dependencies.uuid]
version = "1"
features = [
"v4",
"fast-rng",
]