n-link/desktop/src-tauri/Cargo.toml

36 lines
918 B
TOML
Raw Normal View History

2020-09-26 20:44:36 +00:00
[package]
name = "n-link"
2020-10-06 19:23:59 +00:00
version = "0.1.5"
2020-09-27 18:45:54 +00:00
description = "Free, cross-platform, CX-II compatible computer linking program for the TI-Nspire"
2020-09-26 20:44:36 +00:00
authors = [ "Ben Schattinger <developer@lights0123.com>" ]
license = "GPL-3.0"
repository = "https://github.com/lights0123/n-link"
default-run = "n-link"
edition = "2018"
build = "src/build.rs"
[dependencies]
anyhow = "1.0.32"
serde_json = "1.0"
2020-09-27 01:58:20 +00:00
libnspire = "0.2.2"
2020-09-26 20:44:36 +00:00
lazy_static = "1.4.0"
rusb = "0.6.4"
serde = { version = "1.0", features = [ "derive" ] }
2021-04-05 19:21:43 +00:00
tauri = { version = "0.11", features = [ "event", "notification", "open" ] }
native-dialog = "0.4"
2020-09-26 20:44:36 +00:00
clap = "3.0.0-beta.2"
2021-04-05 19:21:43 +00:00
indicatif = "0.15"
2020-09-26 22:54:17 +00:00
libusb1-sys = { version = "0.4.2", features = [ "vendored" ] }
2021-04-05 19:21:43 +00:00
hashbrown = "0.11"
2020-09-26 20:44:36 +00:00
[target."cfg(windows)".build-dependencies]
winres = "0.1"
[features]
embedded-server = [ "tauri/embedded-server" ]
no-server = [ "tauri/no-server" ]
[[bin]]
name = "n-link"
path = "src/main.rs"