The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hyperlane-monorepo/rust/main/agents/scraper/migration/Cargo.toml

52 lines
833 B

[package]
name = "migration"
documentation.workspace = true
edition.workspace = true
homepage.workspace = true
license-file.workspace = true
publish.workspace = true
version.workspace = true
[lib]
name = "migration"
path = "src/lib.rs"
[dependencies]
sea-orm.workspace = true
sea-orm-migration.workspace = true
serde.workspace = true
time.workspace = true
tokio = { workspace = true, features = [
"rt",
"process",
"macros",
"parking_lot",
] }
# bin-only deps
tracing-subscriber.workspace = true
tracing.workspace = true
[[bin]]
name = "init-db"
path = "bin/init_db.rs"
[[bin]]
name = "down"
path = "bin/down.rs"
[[bin]]
name = "fresh"
path = "bin/fresh.rs"
[[bin]]
name = "recreate-db"
path = "bin/recreate_db.rs"
[[bin]]
name = "generate-entities"
path = "bin/generate_entities.rs"
[features]
default = []