forked from bagindo/tauri-plugin-keygen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (39 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
42 lines (39 loc) · 1.15 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
[package]
name = "tauri-plugin-keygen"
version = "2.0.0"
authors = ["Baginda Namora", "Alexander Falk"]
description = "A Tauri Plugin for Keygen.sh Licensing"
edition = "2021"
rust-version = "1.77.2"
license = "MIT"
exclude = [
"/examples",
"/dist-js",
"/assets",
"node_modules",
]
links = "tauri-plugin-keygen"
[dependencies]
tauri = { version = "2.0.3", features = [] }
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
reqwest = { version = "0.12.4", features = ["json"] }
machine-uid = "0.5.1"
whoami = "1.5.1"
serde_json = "1.0.107"
tokio = { version = "1.40.0", features = ["sync"] }
ed25519-dalek = { version = "2.0.0", features = ["serde"] }
sha2 = "0.10.8"
base64 = "0.21.5"
hex = "0.4.3"
chrono = "0.4.31"
aes-gcm = "0.9"
tauri-plugin-os = "2.0.1"
sqlx = { version = "0.8", features = [ "json", "time" ] }
libsqlite3-sys = "*"
[features]
sqlite = [ "sqlx/sqlite", "sqlx/runtime-tokio" ]
bundled-sqlcipher = ["sqlite","libsqlite3-sys/bundled-sqlcipher"]
bundled-sqlcipher-vendored-openssl = ["sqlite","libsqlite3-sys/bundled-sqlcipher-vendored-openssl"]
[build-dependencies]
tauri-plugin = { version = "2.0.1", features = ["build"] }