-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (43 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
52 lines (43 loc) · 1.15 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
[package]
edition = "2021"
name = "near-riffs"
publish = false
version = "0.1.0"
[workspace]
members = ["contracts/*", "examples/*", "riffs/*"]
exclude = []
[profile.release]
codegen-units = 1
debug = false
lto = true
opt-level = "z"
overflow-checks = true
panic = "abort"
[dependencies]
microjson = "0.1.1"
# near-sdk = {git = "https://github.com/ahalabs/near-sdk-rs", branch = "feat/component_macro", features = ["unstable"], default-features = false}
near-sdk = { git = "https://github.com/ahalabs/near-sdk-rs", rev = "d925512b1d18db103cb3a9ac08f8b03cf6be0cd6", features = [
"unstable",
], default-features = false }
near-units = "0.2.0"
witgen = "0.14.0"
data-url = "0.2.0"
[dev-dependencies]
anyhow = "1.0"
base64 = "0.13.0"
lazy-static-include = "3.1.2"
near-primitives = "0.14.0"
proc-macro2 = { version = "1.0.36", features = ["span-locations"] }
serde_json = "1.0"
tokio = { version = "1.14", features = ["full"] }
workspaces = "0.6.1"
near-crypto = "0.15.0"
[package.metadata.hackerman.stash.dev-dependencies]
proc-macro2 = false
[features]
default = []
admins = []
wee_alloc = ["near-sdk/default"]
publish = []
[package.metadata.witgen]
export = true