db20
Rust + OpenSSL
For anyone looking here, I had this same issue and with these dependencies, was able to get it right. Main thing that worked for me was the openssl dependency.
[dependencies]
axum = "0.5.11"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1.35"
tracing-subscriber = "0.3.14"
serde = { version = "1.0.138", features = ["derive"] }
serde_json = "1.0"
postgrest = "1.0"
env_logger = "0.9.0"
tower = "0.4.13"
tower-http = { version = "0.3.4", features = ["full", "cors"] }
dotenv = "0.15.0"
http = "0.2.8"
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
chrono = { version = "0.4.26", features = ["serde"] }
jsonwebtoken = "8.3.0"
anyhow = "1.0.71"
uuid = { version = "1.4.0", features = ["serde"] }
aws-config = "0.55.3"
aws-sdk-secretsmanager = "0.28.0"
sqlx = { version = "0.7", features = [ "runtime-tokio", "tls-rustls", "postgres", "mysql", "macros", "uuid", "chrono", "bigdecimal"] }
reqwest-retry = "0.2.2"
reqwest-middleware = "0.2.2"
serde_yaml = "0.9.23"
neo4rs = "0.6.2"
maplit = "1.0.2"
futures = "0.3.28"
regex = "1.9.1"
bigdecimal = "0.4.1"
openssl = { version = "0.10", features = ["vendored"] }
37 replies