-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 771 Bytes
/
Cargo.toml
File metadata and controls
33 lines (27 loc) · 771 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
[package]
description = "Static encryption for string literals and binary data"
name = "staticrypt"
documentation = "https://docs.rs/staticrypt"
edition.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
authors.workspace = true
[lints]
workspace = true
[workspace]
members = [".", "macros", "testbin"]
[workspace.lints.clippy]
pedantic = { level = "warn", priority = 0 }
nursery = { level = "warn", priority = 0 }
[workspace.package]
edition = "2024"
license = "MIT"
repository = "https://github.com/Naxdy/staticrypt-rs"
version = "1.2.2"
authors = ["Naxdy <naxdy@naxdy.org>"]
[workspace.dependencies]
aes-gcm = "0.10.3"
[dependencies]
aes-gcm.workspace = true
staticrypt_macros = { version = "1.2.2", path = "macros" }