blob: cdc346a12203cba997302fda84965bce10c22ee8 (
plain)
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
|
[package]
name = "newton_client"
version.workspace = true
edition.workspace = true
authors.workspace = true
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
teleia = { workspace = true }
glam = { workspace = true }
glow = { workspace = true }
bitflags = { workspace = true }
rand = { workspace = true }
log = { workspace = true }
lazy_static = { workspace = true }
strum = { workspace = true }
lexpr = { workspace = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = { workspace = true }
wasm-bindgen-futures = { workspace = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
env_logger = { workspace = true }
clap = { workspace = true }
base64 = { workspace = true }
polling = { workspace = true }
termion = { workspace = true }
|