-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
38 lines (31 loc) · 1.27 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
[package]
name = "access-manager"
version = "0.0.0"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
publish = { workspace = true }
repository = { workspace = true }
[lints]
workspace = true
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
access-manager-types = { workspace = true }
cosmwasm-std = { workspace = true, features = ["cosmwasm_1_3", "staking"] }
depolama = { workspace = true, features = ["iterator"] }
embed-commit = { workspace = true }
frissitheto = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde-json-wasm = { workspace = true }
sha2 = { workspace = true }
thiserror = { workspace = true }
unionlabs-encoding = { workspace = true, features = ["bincode"] }
unionlabs-primitives = { workspace = true, features = ["bincode", "serde", "generic-array-compat"] }
[features]
default = []
library = []
[dev-dependencies]
hex-literal = { workspace = true }
itertools = { workspace = true }
# TODO: Do something like this so the solidity codeblocks are highlighted correctly: https://users.rust-lang.org/t/how-did-slint-create-custom-syntax-highlight-link-and-preview-for-their-code-examples/85294/2