aboutsummaryrefslogblamecommitdiff
path: root/Cargo.toml
blob: d3a6c3551d65448f31f1511219c1f2da5ccc874a (plain) (tree)
1
2
3
4
5
         
               
                 
                
                                              









                                                                                                






                  

                   
            
             


            

              
                       
                                               





















                     






                      





                   
[package]
name = "solard"
version = "0.3.1"
edition = "2021"
authors = [ "Cara Salter <cara@devcara.com>" ]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [ "env-filter" ] }

tower = { version = "0.4", features = [ "util", "timeout" ] }
tower-http = { version = "0.3", features = [ "add-extension", "trace" ] }

color-eyre = "0.6"
eyre = "0.6"

thiserror = "1"

kankyo = "0.3"

axum-macros = "0.2"

paseto = "2"
ring = "0.16"

rand = "0.8"

chrono = "0.4"

[dependencies.solarlib]
git = "https://git.carathe.dev/solard/solarlib"
branch = "master"

[dependencies.serde]
version = "1"
features = [
    "derive"
]

[dependencies.axum]
version = "0.5"
features = [
    "json",
    "tower-log"
]

[dependencies.hyper]
version = "0.14"
features = [ "full" ]

[dependencies.tokio]
version = "1"
features = [ "full" ]

[dependencies.reqwest]
version = "0.11"
features = [
	"json",
	"blocking"
]

[dependencies.uuid]
version = "1"
features = [
    "v4"
]