Skip to content

Commit a1da594

Browse files
authored
Merge pull request #151 from aspiringsecurity/main
fleet vehicle lending at the road incident site
2 parents 26518f1 + fe93600 commit a1da594

File tree

349 files changed

+91457
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

349 files changed

+91457
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[package]
2+
name = "fleet-lending"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[dependencies]
7+
sbor = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "v0.8.0" }
8+
scrypto = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "v0.8.0" }
9+
10+
[dev-dependencies]
11+
transaction = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "v0.8.0" }
12+
radix-engine = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "v0.8.0" }
13+
scrypto-unit = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "v0.8.0" }
14+
15+
[profile.release]
16+
opt-level = 's' # Optimize for size.
17+
lto = true # Enable Link Time Optimization.
18+
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
19+
panic = 'abort' # Abort on panic.
20+
strip = "debuginfo" # Strip debug info.
21+
overflow-checks = true # Panic in the case of an overflow.
22+
23+
[lib]
24+
crate-type = ["cdylib", "lib"]
25+
26+
[workspace]
27+
# Set the package crate as its own empty workspace, to hide it from any potential ancestor workspace
28+
# Remove this [workspace] section if you intend the package to be part of a Cargo workspace
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Fleet Lending
2+
3+
Effective design, engineering and delivery of blockchain technology aided solution using Scrypto on Radix for citizens to lend vehicles or fleet services in case of road incidents.
4+
5+
Planning of fleet deployments or vehicles by using analytics managed in a decemtralized manner at the command and control center.
6+
7+

0 commit comments

Comments
 (0)