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

35 lines
937 B
TOML
Raw Permalink Normal View History

2020-09-26 20:44:36 +00:00
[package]
name = "n-link"
2021-04-06 21:39:41 +00:00
version = "0.1.6"
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-08-30 20:49:54 +00:00
tauri = { version = "1.0.0-beta.8", features = ["dialog-open", "dialog-save", "notification-all", "shell-open"] }
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
2021-10-31 19:10:36 +00:00
[build-dependencies]
tauri-build = { version = "1.0.0-beta.4" }
2020-09-26 20:44:36 +00:00
[features]
2021-08-30 20:49:54 +00:00
custom-protocol = [ "tauri/custom-protocol" ]
default = [ "custom-protocol" ]
2020-09-26 20:44:36 +00:00
[[bin]]
name = "n-link"
path = "src/main.rs"