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/agents/scraper/migration/Cargo.toml

35 lines
750 B

[package]
name = "migration"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
name = "migration"
path = "src/lib.rs"
[dependencies]
hyperlane-core = { path = "../../../hyperlane-core" }
sea-orm = {version = "~0.10.5", features = ["macros"]}
sea-orm-migration = { version = "~0.10.5", features = ["runtime-tokio-native-tls", "sqlx-postgres"] }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1", features = ["rt", "macros"] }
# bin-only deps
tracing-subscriber = { version = "0.3" }
tracing = { version = "0.1" }
[[bin]]
name = "init-db"
path = "bin/init_db.rs"
[[bin]]
name = "recreate-db"
path = "bin/recreate_db.rs"
[[bin]]
name = "generate-entities"
path = "bin/generate_entities.rs"
[features]
default = []