Spaces:
Running
Running
Update rust_highlight/Cargo.toml
Browse files- rust_highlight/Cargo.toml +11 -0
rust_highlight/Cargo.toml
CHANGED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[package]
|
2 |
+
name = "rust_highlight"
|
3 |
+
version = "0.1.0"
|
4 |
+
edition = "2021"
|
5 |
+
|
6 |
+
[lib]
|
7 |
+
name = "rust_highlight"
|
8 |
+
crate-type = ["cdylib"]
|
9 |
+
|
10 |
+
[dependencies]
|
11 |
+
pyo3 = { version = "0.21", features = ["extension-module"] }
|