-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 1.13 KB
/
Copy pathCargo.toml
File metadata and controls
39 lines (33 loc) · 1.13 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
[package]
name = "soroban-safestream"
version = "0.1.0"
edition = "2021"
authors = ["Bojest001 <belovedj66@gmail.com>"]
description = "A production-grade, linear token streaming protocol built on Soroban for the Stellar network. Lock USDC, XLM, or any SAC-compatible token and stream it block-by-block with linear vesting, delegate withdrawals, emergency pause, and Protocol 26 TTL state-rent safety."
license = "MIT"
repository = "https://github.com/Bojest001/Soroban-SafeStream"
homepage = "https://github.com/Bojest001/Soroban-SafeStream"
keywords = ["soroban", "stellar", "token-streaming", "vesting", "defi"]
categories = ["cryptography::cryptocurrencies"]
readme = "README.md"
[lib]
crate-type = ["cdylib"]
doctest = false
[features]
testutils = ["soroban-sdk/testutils"]
[dependencies]
soroban-sdk = { version = "22.0.0", features = [] }
[dev-dependencies]
soroban-sdk = { version = "22.0.0", features = ["testutils"] }
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
[profile.release-with-logs]
inherits = "release"
debug-assertions = true