forked from mdsteele/rust-msi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 736 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 736 Bytes
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
[workspace]
members = [".", "ffi"]
default-members = [".", "ffi"]
[workspace.package]
version = "0.9.0"
authors = ["Matthew D. Steele <mdsteele@alum.mit.edu>"]
repository = "https://github.com/mdsteele/rust-msi"
keywords = ["msi", "windows", "installer", "package"]
license = "MIT"
readme = "README.md"
edition = "2021"
[package]
name = "msi"
version.workspace = true
authors.workspace = true
description = "Read/write Windows Installer (MSI) files"
repository.workspace = true
keywords.workspace = true
license.workspace = true
readme.workspace = true
edition.workspace = true
[dependencies]
byteorder = "1"
cfb = "0.14"
encoding_rs = "0.8"
uuid = "1"
[dev-dependencies]
clap = "2.27"
pest = "2.1"
pest_derive = "2.1"
time = "0.3"