-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (48 loc) · 1.48 KB
/
Copy pathCargo.toml
File metadata and controls
52 lines (48 loc) · 1.48 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
43
44
45
46
47
48
49
50
51
52
[package]
name = "dv4lua"
version = "0.1.10"
edition = "2024"
description = "a lua-based command line tool that provides abstract user (device) interoperability"
authors = ["km0e <kmdr.error@gmail.com>"]
repository = "https://github.com/km0e/dv4lua.git"
homepage = "https://blog.101248.xyz/dv4lua/"
[package.metadata.wix]
upgrade-guid = "EE2C9595-12ED-48A2-BC03-E920E3E35D71"
path-guid = "68B3DC1D-4B94-4B23-BCED-67CB53CA28D0"
license = false
eula = false
[dependencies]
anyhow = "1.0"
clap = { version = "4.6", features = [] }
directories = { version = "6.0.0" }
dv-wrap = { version = "0.1.4", git = "https://github.com/km0e/dv-api", features = [
"full",
] }
dv-api = { version = "0.1.2", git = "https://github.com/km0e/dv-api", features = [
"full",
] }
elliptic-curve = { version = "=0.14.0-rc.28" }
futures = "0.3"
humantime-serde = { version = "1.1" }
mlua = { version = "0.11", features = [
"async",
"serde",
"lua54",
"vendored",
"anyhow",
] }
os2 = { version = "0.1", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
thiserror = "2.0"
tokio = { version = "1.51", features = ["rt-multi-thread", "macros"] }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
codegen-units = 1