-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (20 loc) · 735 Bytes
/
Cargo.toml
File metadata and controls
26 lines (20 loc) · 735 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
[package]
name = "secko"
version = "0.1.0"
edition = "2021"
[patch.crates-io] #patch must be specified at root here
ocaml-boxroot-sys = { path = "/home/prsu8368/kvstore/fixed_libraries/ocaml-boxroot/rust/ocaml-boxroot-sys/" } # fixed error on line 735 where action was invoked - added a NULL as the first parameter was apparently some self-referential pointer??? no idea if its even right but it compiled.
[[bin]]
name = "client"
path = "crates/client/src/main.rs"
[[bin]]
name = "server"
path = "crates/server/src/main.rs"
[[bin]]
name = "test"
path = "crates/tests/src/main.rs"
[lib]
name = "messages"
path = "crates/messages/src/lib.rs"
[workspace]
members=["crates/client", "crates/server", "crates/messages", "crates/tests"]