-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (50 loc) · 1.44 KB
/
Cargo.toml
File metadata and controls
57 lines (50 loc) · 1.44 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
53
54
55
56
57
[workspace]
members = [
"uniffi-bindgen",
"walletkit-core",
"walletkit",
"walletkit-db",
"walletkit-cli",
]
resolver = "2"
[workspace.package]
version = "0.13.0"
license = "MIT"
edition = "2021"
authors = ["World Contributors"]
readme = "./README.md"
homepage = "https://docs.world.org" # TODO: Update to specific WalletKit page
rust-version = "1.91" # MSRV
repository = "https://github.com/worldcoin/walletkit"
exclude = [
"tests/",
"uniffi-bindgen/",
"walletkit-cli/",
"/audits",
"/kotlin",
"/swift",
]
keywords = ["ZKP", "WorldID", "World", "Identity", "Semaphore"]
categories = ["api-bindings", "cryptography::cryptocurrencies"]
[workspace.dependencies]
alloy-core = { version = "1", default-features = false, features = [
"sol-types",
] }
alloy-primitives = { version = "1", default-features = false }
uniffi = { version = "0.31.0", features = ["tokio"] }
world-id-core = { version = "0.9.0", default-features = false }
# internal
walletkit-core = { version = "0.13.0", path = "walletkit-core", default-features = false }
walletkit-db = { version = "0.13.0", path = "walletkit-db" }
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
[workspace.lints.rust]
missing_docs = "deny"
dead_code = "deny"
[profile.release]
opt-level = 'z' # Optimize for size.
lto = true # Enable Link Time Optimization.
panic = "abort"
debug = false