Fixed version string
All checks were successful
Build and deploy / Build container and manifests (push) Successful in 2m30s
All checks were successful
Build and deploy / Build container and manifests (push) Successful in 2m30s
This commit is contained in:
@@ -2,7 +2,6 @@ use std::cmp::min;
|
||||
use std::iter::once;
|
||||
|
||||
use clap::Parser;
|
||||
use git_version::git_version;
|
||||
use ratatui::layout::Rect;
|
||||
use ratatui::prelude::CrosstermBackend;
|
||||
use ratatui::{Terminal, TerminalOptions, Viewport};
|
||||
@@ -11,13 +10,14 @@ use russh::keys::ssh_key::PublicKey;
|
||||
use russh::server::{Auth, Msg, Session};
|
||||
use tracing::{debug, trace, warn};
|
||||
|
||||
use crate::VERSION;
|
||||
use crate::io::{Input, TerminalHandle};
|
||||
use crate::ldap::{Ldap, LdapError};
|
||||
use crate::tunnel::{Registry, Tunnel, TunnelAccess};
|
||||
|
||||
/// Quickly create http tunnels for development
|
||||
#[derive(Parser, Debug)]
|
||||
#[command(version = git_version!(), about, long_about = None)]
|
||||
#[command(version = VERSION, about, long_about = None)]
|
||||
pub struct Args {
|
||||
/// Make all tunnels public by default instead of private
|
||||
#[arg(long, group = "access")]
|
||||
|
||||
Reference in New Issue
Block a user