meta: initial commit (archival)

This commit is contained in:
2023-12-27 14:33:55 -05:00
commit 5f381f9ad5
8 changed files with 1408 additions and 0 deletions

17
string_sum/Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "string_sum"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "string_sum"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.16.5", features = ["extension-module"] }
pyo3-asyncio = { version = "0.16", features = ["tokio-runtime"] }
reqwest = { version = "0.11.11" }
serde = { version = "1.0.138", features = ["derive"] }
serde_json = "1.0.82"
tokio = { version = "1.19.2", features = ["full"] }