[package]
edition = "2021"
name = "rustao"
version = "0.2.0"
authors = ["Antony Kim <kimtony123@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust SDK for the AO protocol on Arweave"
homepage = "https://github.com/kimtony123/rustao"
readme = "README.md"
license = "MIT"
repository = "https://github.com/kimtony123/rustao"
[lib]
name = "rustao"
path = "src/lib.rs"
[[example]]
name = "encryption"
path = "examples/encryption.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[[test]]
name = "client_tests"
path = "tests/client_tests.rs"
[[test]]
name = "dataitem_tests"
path = "tests/dataitem_tests.rs"
[[test]]
name = "encrypt_tests"
path = "tests/encrypt_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "signer_tests"
path = "tests/signer_tests.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.async-trait]
version = "0.1"
[dependencies.base58]
version = "0.2"
[dependencies.base64]
version = "0.21"
[dependencies.crypto-common]
version = "0.1"
[dependencies.num-bigint-dig]
version = "0.8"
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.11"
features = [
"json",
"stream",
]
[dependencies.rsa]
version = "0.9"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.tokio-test]
version = "0.4"