extern crate serde_json; extern crate smarty_rust_sdk; extern crate tokio; use smarty_rust_sdk::international_street_api::client::InternationalStreetClient; use smarty_rust_sdk::international_street_api::lookup::Lookup; use smarty_rust_sdk::sdk::authentication::SecretKeyCredential; use smarty_rust_sdk::sdk::options::OptionsBuilder; use std::error::Error; #[tokio::main] async fn main() -> Result<(), Box> { let lookup = &mut Lookup { geocode: false, organization: "John Doe".to_string(), address1: "Rua Padre Antonio D'Angelo 121".to_string(), address2: "Casa Verde".to_string(), locality: "Sao Paulo".to_string(), administrative_area: "SP".to_string(), country: "Brazil".to_string(), postal_code: "02516-050".to_string(), ..Default::default() }; let authentication = SecretKeyCredential::new( std::env::var("SMARTY_AUTH_ID").expect("Missing SMARTY_AUTH_ID env variable"), std::env::var("SMARTY_AUTH_TOKEN").expect("Missing SMARTY_AUTH_TOKEN env variable"), ); let options = OptionsBuilder::new(Some(authentication)) // The appropriate license values to be used for your subscriptions // can be found on the Subscriptions page of the account dashboard. // https://www.smartystreets.com/docs/cloud/licensing .with_license("international-global-plus-cloud") .build(); let client = InternationalStreetClient::new(options)?; client.send(lookup).await?; println!("{}", serde_json::to_string_pretty(&lookup.results)?); Ok(()) }