-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 902 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 902 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
[package]
name = "notepad"
version = "0.3.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
zip = "0.6"
open = "3.2.0"
rust-crypto = "^0.2"
named-lock = "0.3.0"
thiserror = "1.0"
base64 = "0.21.0"
byteorder = "1.4"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
getrandom = { version ="0.2", features = ["std"] }
reqwest = { version = "0.11", features = ["blocking", "multipart", "json", "serde_json"] }
uuid = { version = "1.0.0", features = ["v4"] }
druid = { git = "https://github.com/linebender/druid.git", features = ["im"] }
druid-shell = { git = "https://github.com/linebender/druid.git" }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["dpapi"] }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"