summaryrefslogtreecommitdiff
path: root/rust/Cargo.toml
diff options
context:
space:
mode:
authorArnaud Bailly <arnaud.bailly@iohk.io>2024-09-23 14:36:15 +0200
committerArnaud Bailly <arnaud.bailly@iohk.io>2024-09-23 14:36:15 +0200
commitde98bfc28feebfe112a378017c73d0e20dfb2937 (patch)
treeb5bca14d2053ace6746ef9b9c82bed6c19b20254 /rust/Cargo.toml
parent66abe3871337139e839b693ea9e290eaa9a72516 (diff)
downloadlambda-nantes-de98bfc28feebfe112a378017c73d0e20dfb2937.tar.gz
Scaffolding of main, library, and tests
Diffstat (limited to 'rust/Cargo.toml')
-rw-r--r--rust/Cargo.toml8
1 files changed, 8 insertions, 0 deletions
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 7d75412..be173f5 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -4,3 +4,11 @@ version = "0.1.0"
edition = "2021"
[dependencies]
+
+[lib]
+name = "lambda"
+path = "src/lambda.rs"
+
+[[bin]]
+name = "lambda"
+path = "src/main.rs"