forked from Fund-My-Cause/Fund-My-Cause
-
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) · 757 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (28 loc) · 757 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 = "crowdfund"
version = "0.1.0"
edition = "2021"
publish = false
description = "Fund-My-Cause crowdfunding smart contract for the Stellar/Soroban network"
documentation = "https://fund-my-cause.github.io/Fund-My-Cause/crowdfund"
readme = "../../README.md"
license = "MIT"
[lib]
crate-type = ["cdylib", "rlib"]
doctest = false
# docs.rs configuration — enables all features and sets rustdoc flags
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg", "docsrs",
"--document-private-items",
"--default-theme=ayu",
]
[features]
fuzz = []
[dependencies]
soroban-sdk = { workspace = true }
[dev-dependencies]
soroban-sdk = { workspace = true, features = ["testutils"] }
insta = { workspace = true }
proptest = "1.4"