-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (58 loc) · 2.05 KB
/
Copy pathCargo.toml
File metadata and controls
62 lines (58 loc) · 2.05 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "pydynox"
version = "1.3.0"
edition = "2024"
authors = ["Leandro Cavalcante Damascena <leandro.damascena@gmail.com>"]
description = "A fast DynamoDB ORM for Python with a Rust core"
license = "Apache-2.0"
repository = "https://github.com/ferrumio/pydynox"
homepage = "https://github.com/ferrumio/pydynox"
documentation = "https://ferrumio.github.io/pydynox"
readme = "README.md"
keywords = ["dynamodb", "orm", "aws", "database", "pyo3"]
categories = ["database", "api-bindings"]
[lib]
name = "pydynox"
crate-type = ["cdylib"]
path = "src/lib.rs"
[dependencies]
pyo3 = { version = ">=0.28.2", features = ["extension-module", "multiple-pymethods"] }
pyo3-async-runtimes = { version = "0.28", features = ["tokio-runtime"] }
aws-sdk-dynamodb = { version = "1.113", default-features = false, features = ["default-https-client", "rt-tokio"] }
aws-sdk-kms = { version = "1.109", default-features = false, features = ["default-https-client", "rt-tokio"] }
aws-sdk-s3 = { version = "1.134", default-features = false, features = ["default-https-client", "rt-tokio", "sigv4a"] }
aws-sdk-sts = { version = "1.105", default-features = false, features = ["default-https-client", "rt-tokio"] }
aws-config = { version = "1.8", default-features = false, features = ["behavior-version-latest", "default-https-client", "rt-tokio", "credentials-process", "sso"] }
tokio = { version = "1", features = [
"rt-multi-thread",
"sync",
"time",
"io-util",
"fs",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
base64 = "0.22"
once_cell = "1.21"
zstd = "0.13"
lz4_flex = "0.13"
flate2 = "1.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.23", features = ["v4"] }
ulid = "1.1"
svix-ksuid = "0.10"
chrono = { version = "0.4", default-features = false, features = [
"std",
"clock",
] }
aes-gcm = "0.10"
rand = "0.10"
[dev-dependencies]
pyo3 = { version = ">=0.28.2", features = ["auto-initialize"] }
[profile.release]
lto = true
codegen-units = 1
strip = true
panic = "abort"