Spaces:
Build error
Build error
Upload laa_core/Cargo.toml with huggingface_hub
Browse files- laa_core/Cargo.toml +35 -0
laa_core/Cargo.toml
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[package]
|
| 2 |
+
name = "laa_core"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
edition = "2021"
|
| 5 |
+
|
| 6 |
+
[dependencies]
|
| 7 |
+
pyo3 = { version = "0.24.1", features = ["extension-module"] }
|
| 8 |
+
rand = "0.8.5"
|
| 9 |
+
|
| 10 |
+
[dev-dependencies]
|
| 11 |
+
criterion = "0.5"
|
| 12 |
+
|
| 13 |
+
[[bench]]
|
| 14 |
+
name = "ski_rental"
|
| 15 |
+
harness = false
|
| 16 |
+
|
| 17 |
+
[[bench]]
|
| 18 |
+
name = "caching"
|
| 19 |
+
harness = false
|
| 20 |
+
|
| 21 |
+
[[bench]]
|
| 22 |
+
name = "oneway_trading"
|
| 23 |
+
harness = false
|
| 24 |
+
|
| 25 |
+
[[bench]]
|
| 26 |
+
name = "scheduling"
|
| 27 |
+
harness = false
|
| 28 |
+
|
| 29 |
+
[[bench]]
|
| 30 |
+
name = "search"
|
| 31 |
+
harness = false
|
| 32 |
+
|
| 33 |
+
[lib]
|
| 34 |
+
name = "laa_core"
|
| 35 |
+
crate-type = ["cdylib", "rlib"]
|