-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 816 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 816 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]
name = "marg"
version = "0.3.3"
edition = "2024"
authors = ["Vladimir Krinitsyn <v.krinitsyn@gmail.com>"]
license = "MIT"
description = "Meta config for apps from args"
homepage = "https://github.com/vkrinitsyn/marg.git"
repository = "https://github.com/vkrinitsyn/marg.git"
[dependencies]
uuid = { version = "^1", features = ["v4"] }
base64 = "0.22.1"
rand = { version = "0.10.0-rc.5" , optional = true}
[features]
# at least one db feature is better to set
default = ["postgres"]
# default
postgres = []
#
sqlite = []
# pull temorary password, like session token from a script run
token = []
# check for key text file, to use for RSA of AES
key = []
# if key set in env, the key will be kleanup after read
keep_env_secret = []
# support secret generation to have rand optional
gen_secret = ["rand"]