55 lines
1.3 KiB
TOML
55 lines
1.3 KiB
TOML
[package]
|
|
name = "caretta-sync-core"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
description.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
cli = ["dep:clap"]
|
|
test = ["dep:tempfile", ]
|
|
|
|
[dependencies]
|
|
base64 = "0.22.1"
|
|
chrono.workspace = true
|
|
chrono-tz = "0.10.3"
|
|
ciborium.workspace = true
|
|
clap = {workspace = true, optional = true}
|
|
dirs = "6.0.0"
|
|
futures.workspace = true
|
|
libp2p.workspace = true
|
|
libp2p-core = { version = "0.43.0", features = ["serde"] }
|
|
libp2p-identity = { version = "0.2.11", features = ["ed25519", "peerid", "rand", "serde"] }
|
|
prost = "0.14.1"
|
|
sea-orm.workspace = true
|
|
sea-orm-migration.workspace = true
|
|
serde.workspace = true
|
|
tempfile = { version = "3.20.0", optional = true }
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
toml = "0.8.22"
|
|
tonic.workspace = true
|
|
tonic-prost = "0.14.0"
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
uuid.workspace = true
|
|
prost-types = "0.14.1"
|
|
sysinfo = "0.37.0"
|
|
whoami = "1.6.1"
|
|
|
|
[target.'cfg(target_os="android")'.dependencies]
|
|
jni = "0.21.1"
|
|
ndk = "0.9.0"
|
|
|
|
[target.'cfg(target_os="ios")'.dependencies]
|
|
objc = "0.2.7"
|
|
objc-foundation = "0.1.1"
|
|
objc_id = "0.1.1"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.20.0"
|
|
|
|
[build-dependencies]
|
|
tonic-prost-build = "0.14.0"
|